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 6961ee7
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/array-api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
numpy-version: ['1.26', 'dev']
exclude:
- python-version: '3.8'
numpy-version: 'dev'
python-version: ['3.12', '3.13']
numpy-version: ['1.26', '2.2', 'dev']

steps:
- name: Checkout array-api-strict
Expand All @@ -38,7 +35,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 6961ee7

Please sign in to comment.