Skip to content

Commit

Permalink
CI: try fix missing pip step by using env var for version
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Apr 7, 2024
1 parent 74b130a commit 5f37aee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,10 @@ jobs:
python -m pip install --upgrade pip
- name: Install dependencies
env:
NP_VER: ${{ matrix.ver.np }}
run: |
python -m pip install build coveralls>=3.0.0 numpy${{ matrix.ver.np }}
python -m pip install build coveralls>=3.0.0 numpy${NP_VER}
- name: bleeding edge
if: matrix.ver.np == '>=2.0.0rc1'
Expand Down

0 comments on commit 5f37aee

Please sign in to comment.