Skip to content

Commit 60bbb41

Browse files
committed
Add test pinning numpy to 1.26
1 parent 01071c9 commit 60bbb41

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python-version: ["3.11", "3.12", "3.13", "3.14"]
22+
include:
23+
- python-version: "3.11"
24+
extra_requirements: "numpy~=1.26"
25+
- python-version: "3.12"
26+
- python-version: "3.13"
27+
- python-version: "3.14"
2328

2429
steps:
2530
- uses: actions/checkout@v6
@@ -32,10 +37,12 @@ jobs:
3237
python-version: ${{ matrix.python-version }}
3338

3439
- name: Install dependencies
40+
env:
41+
EXTRA_REQUIREMENTS: ${{ matrix.extra_requirements }}
3542
run: |
3643
python --version
3744
pip install codecov pytest-cov flake8
38-
pip install -e .[all]
45+
pip install -e .[all] ${EXTRA_REQUIREMENTS}
3946
pip freeze
4047
4148
- name: Static codechecks

0 commit comments

Comments
 (0)