Skip to content

Commit e92d063

Browse files
authored
Merge pull request #199 from ev-br/ci_maint
CI: test latest releasted numpy; drop py 3.11,3.12
2 parents 2d9ef17 + 612d356 commit e92d063

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
15-
numpy-version: ['1.26', '2.3.5', 'dev']
14+
python-version: ['3.10', '3.13', '3.14']
15+
numpy-version: ['1.26', 'latest', 'dev']
1616
exclude:
1717
- python-version: '3.10'
18-
numpy-version: '2.3.5'
18+
numpy-version: 'latest'
1919
- python-version: '3.10'
2020
numpy-version: 'dev'
2121
- python-version: '3.13'
@@ -43,6 +43,8 @@ jobs:
4343
python -m pip install --upgrade pip
4444
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
4545
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
46+
elif [[ "${{ matrix.numpy-version }}" == "latest" ]]; then
47+
python -m pip install numpy
4648
else
4749
python -m pip install 'numpy=='${{ matrix.numpy-version }};
4850
fi

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
9-
numpy-version: ['1.26', '2.3.5', 'dev']
8+
python-version: ['3.10', '3.13', '3.14']
9+
numpy-version: ['1.26', 'latest', 'dev']
1010
exclude:
1111
- python-version: '3.10'
12-
numpy-version: '2.3.5'
12+
numpy-version: 'latest'
1313
- python-version: '3.10'
1414
numpy-version: 'dev'
1515
- python-version: '3.13'
@@ -27,6 +27,8 @@ jobs:
2727
python -m pip install --upgrade pip
2828
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
2929
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
30+
elif [[ "${{ matrix.numpy-version }}" == "latest" ]]; then
31+
python -m pip install numpy
3032
else
3133
python -m pip install 'numpy=='${{ matrix.numpy-version }}
3234
fi

0 commit comments

Comments
 (0)