Skip to content

Commit 6961ee7

Browse files
committed
CI: bump python versions on CI
1 parent ede45af commit 6961ee7

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/array-api-tests.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ 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']
16-
exclude:
17-
- python-version: '3.8'
18-
numpy-version: 'dev'
14+
python-version: ['3.12', '3.13']
15+
numpy-version: ['1.26', '2.2', 'dev']
1916

2017
steps:
2118
- name: Checkout array-api-strict
@@ -38,7 +35,7 @@ jobs:
3835
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
3936
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
4037
else
41-
python -m pip install 'numpy>=1.26,<2.0';
38+
python -m pip install 'numpy=='${{ matrix.numpy-version }};
4239
fi
4340
python -m pip install ${GITHUB_WORKSPACE}/array-api-strict
4441
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt

0 commit comments

Comments
 (0)