We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec1e0e6 commit 0dc9fb8Copy full SHA for 0dc9fb8
.github/workflows/test.yml
@@ -11,7 +11,7 @@ jobs:
11
matrix:
12
os: [ubuntu-latest]
13
python: ['3.9', '3.10', '3.11', '3.12']
14
- numpy_version: ["latest", "<2"]
+ numpy_version: ["numpy-latest", "numpy<2"]
15
runs-on: ${{ matrix.os }}
16
17
steps:
@@ -29,7 +29,7 @@ jobs:
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
- if [ "${{ matrix.numpy_version }}" = "<2" ]; then
+ if [ "${{ matrix.numpy_version }}" = "numpy<2" ]; then
33
pip install ".[test,test_numpy_pre2]"
34
else
35
pip install ".[test]"
0 commit comments