Skip to content

Commit

Permalink
Tweaking the numpy version tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
tshead committed Jul 12, 2024
1 parent 0330452 commit ea7fbfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
numpy-version: ["<2.0.0", ">=2.0.0"]
numpy-version: ["numpy<2.0.0", "numpy>=2.0.0"]

steps:
- uses: actions/checkout@v3
Expand All @@ -26,7 +26,7 @@ jobs:
sudo apt-get install ffmpeg ghostscript
python -m pip install --upgrade pip
pip install coveralls
pip install numpy${{ matrix.numpy-version }}
pip install ${{ matrix.numpy-version }}
pip install .[all]
- name: Run tests
run: |
Expand Down

0 comments on commit ea7fbfe

Please sign in to comment.