Skip to content

Commit

Permalink
BUG: fixed typo
Browse files Browse the repository at this point in the history
Fixed a typo in the numpy version variable name.
  • Loading branch information
aburrell committed Dec 27, 2024
1 parent 4b8cd81 commit 884e2cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: ["ubuntu-latest", "windows-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
numpy_ver: ["latest"]
numpy-ver: ["latest"]
test_config: ["latest"]
include:
# Support different GA Mac environmnets
Expand All @@ -28,7 +28,7 @@ jobs:
os: "macos-latest"
# NEP29 compliance settings
- python-version: "3.10"
numpy_ver: "1.25"
numpy-ver: "1.25"
os: "ubuntu-latest"
test_config: "NEP29"

Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install NEP29 dependencies
if: ${{ matrix.test_config == 'NEP29'}}
run: |
pip install numpy==${{ matrix.numpy_ver }}
pip install numpy==${{ matrix.numpy-ver }}
- name: Install standard and test dependencies
run: pip install --upgrade-strategy only-if-needed .[test]
Expand Down

0 comments on commit 884e2cf

Please sign in to comment.