Skip to content

Commit d5397d6

Browse files
committed
CI: bump python versions on CI
1 parent 55e5a61 commit d5397d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.10', '3.11', '3.12', '3.13']
15-
numpy-version: ['1.26', 'dev']
14+
python-version: ['3.12', '3.13']
15+
numpy-version: ['1.26', '2.2', 'dev']
1616
exclude:
1717
- python-version: '3.13'
1818
numpy-version: '1.26'
@@ -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)