We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01071c9 commit 60bbb41Copy full SHA for 60bbb41
1 file changed
.github/workflows/ci.yml
@@ -19,7 +19,12 @@ jobs:
19
runs-on: ubuntu-latest
20
strategy:
21
matrix:
22
- python-version: ["3.11", "3.12", "3.13", "3.14"]
+ 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"
28
29
steps:
30
- uses: actions/checkout@v6
@@ -32,10 +37,12 @@ jobs:
32
37
python-version: ${{ matrix.python-version }}
33
38
34
39
- name: Install dependencies
40
+ env:
41
+ EXTRA_REQUIREMENTS: ${{ matrix.extra_requirements }}
35
42
run: |
36
43
python --version
44
pip install codecov pytest-cov flake8
- pip install -e .[all]
45
+ pip install -e .[all] ${EXTRA_REQUIREMENTS}
46
pip freeze
47
48
- name: Static codechecks
0 commit comments