Skip to content

Commit

Permalink
CI: bump python versions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-br committed Feb 4, 2025
1 parent ede45af commit 45befd6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/array-api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
numpy-version: ['1.26', 'dev']
python-version: ['3.12', '3.13']
numpy-version: ['1.26', '2.2', 'dev']
exclude:
- python-version: '3.8'
numpy-version: 'dev'
- python-version: '3.13'
numpy-version: '1.26'

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

0 comments on commit 45befd6

Please sign in to comment.