Skip to content

Commit e3d87be

Browse files
committed
CI: enfore numpy < 2; simplify a bit
1 parent e2de015 commit e3d87be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pip.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: ['3.11', '3.12']
19-
numpy: ['"numpy<2.2"', 'numpy']
19+
numpy: ['"numpy<2.0"', 'numpy']
2020
os: [ubuntu-latest]
21-
pytest: ['"pytest<8.0"', pytest]
21+
pytest: [pytest]
2222
pre: ['', '--pre']
2323

2424
steps:
@@ -36,7 +36,7 @@ jobs:
3636
python -m pip install --upgrade pip
3737
python -m pip install ${{matrix.pytest}} ${{matrix.pre}}
3838
python -m pip install -e . ${{matrix.pre}}
39-
python -m pip install ${{matrix.numpy}}
39+
python -m pip install ${{matrix.numpy}} ${{matrix.pre}}
4040
4141
- name: Echo versions
4242
run: |

0 commit comments

Comments
 (0)