Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 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.10', '3.11', '3.12', '3.13', '3.14']
numpy-version: ['1.26', '2.3.5', 'dev']
python-version: ['3.10', '3.13', '3.14']
numpy-version: ['1.26', 'latest', 'dev']
exclude:
- python-version: '3.10'
numpy-version: '2.3.5'
numpy-version: 'latest'
- python-version: '3.10'
numpy-version: 'dev'
- python-version: '3.13'
Expand Down Expand Up @@ -43,6 +43,8 @@ jobs:
python -m pip install --upgrade pip
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
elif [[ "${{ matrix.numpy-version }}" == "latest" ]]; then
python -m pip install numpy
else
python -m pip install 'numpy=='${{ matrix.numpy-version }};
fi
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
numpy-version: ['1.26', '2.3.5', 'dev']
python-version: ['3.10', '3.13', '3.14']
numpy-version: ['1.26', 'latest', 'dev']
exclude:
- python-version: '3.10'
numpy-version: '2.3.5'
numpy-version: 'latest'
- python-version: '3.10'
numpy-version: 'dev'
- python-version: '3.13'
Expand All @@ -27,6 +27,8 @@ jobs:
python -m pip install --upgrade pip
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
elif [[ "${{ matrix.numpy-version }}" == "latest" ]]; then
python -m pip install numpy
else
python -m pip install 'numpy=='${{ matrix.numpy-version }}
fi
Expand Down
Loading