Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromekelleher committed Jun 20, 2024
1 parent 15ed968 commit de08593
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ jobs:
python -m pytest tests
numpy-versions:
name: Numpy version compatibility
name: Numpy compat
runs-on: ubuntu-latest
strategy:
matrix:
numpy: [ 1.23.5, 2.0 ]
numpy: [ 1.23.5, "2.0" ]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
Expand All @@ -81,6 +81,12 @@ jobs:
run: |
python -m pip install .
- name: Install pip deps
run: |
python -m pip install -r python/requirements/CI/tests/requirements.txt
# Make sure we're still using the same version of numpy
python -m pip install numpy==${{matrix.numpy}}
- name: Run tests
working-directory: python
run: |
Expand Down

0 comments on commit de08593

Please sign in to comment.