Skip to content

Commit ea7fbfe

Browse files
committed
Tweaking the numpy version tests.
1 parent 0330452 commit ea7fbfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/regression-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16-
numpy-version: ["<2.0.0", ">=2.0.0"]
16+
numpy-version: ["numpy<2.0.0", "numpy>=2.0.0"]
1717

1818
steps:
1919
- uses: actions/checkout@v3
@@ -26,7 +26,7 @@ jobs:
2626
sudo apt-get install ffmpeg ghostscript
2727
python -m pip install --upgrade pip
2828
pip install coveralls
29-
pip install numpy${{ matrix.numpy-version }}
29+
pip install ${{ matrix.numpy-version }}
3030
pip install .[all]
3131
- name: Run tests
3232
run: |

0 commit comments

Comments
 (0)