Skip to content

Commit 0dc9fb8

Browse files
author
Mateusz Kopeć
committed
* Change test matrix variable values to be more meaningful
1 parent ec1e0e6 commit 0dc9fb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
os: [ubuntu-latest]
1313
python: ['3.9', '3.10', '3.11', '3.12']
14-
numpy_version: ["latest", "<2"]
14+
numpy_version: ["numpy-latest", "numpy<2"]
1515
runs-on: ${{ matrix.os }}
1616

1717
steps:
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
if [ "${{ matrix.numpy_version }}" = "<2" ]; then
32+
if [ "${{ matrix.numpy_version }}" = "numpy<2" ]; then
3333
pip install ".[test,test_numpy_pre2]"
3434
else
3535
pip install ".[test]"

0 commit comments

Comments
 (0)