Skip to content

Commit 45befd6

Browse files
committed
CI: bump python versions on CI
1 parent ede45af commit 45befd6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: .github/workflows/array-api-tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12']
15-
numpy-version: ['1.26', 'dev']
14+
python-version: ['3.12', '3.13']
15+
numpy-version: ['1.26', '2.2', 'dev']
1616
exclude:
17-
- python-version: '3.8'
18-
numpy-version: 'dev'
17+
- python-version: '3.13'
18+
numpy-version: '1.26'
1919

2020
steps:
2121
- name: Checkout array-api-strict
@@ -38,7 +38,7 @@ jobs:
3838
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
3939
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
4040
else
41-
python -m pip install 'numpy>=1.26,<2.0';
41+
python -m pip install 'numpy=='${{ matrix.numpy-version }};
4242
fi
4343
python -m pip install ${GITHUB_WORKSPACE}/array-api-strict
4444
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt

0 commit comments

Comments
 (0)