Skip to content

Commit e12261f

Browse files
authored
bump python & numpy versions (#200)
* conda recipe * CI matrix
1 parent 52d4ac7 commit e12261f

File tree

2 files changed

+21
-31
lines changed

2 files changed

+21
-31
lines changed

.github/workflows/build.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: [self-hosted, python, cuda]
1414
strategy:
1515
matrix:
16-
python-version: [3.9]
17-
numpy-version: [1.22]
16+
python-version: [3.11]
17+
numpy-version: [1.25]
1818
steps:
1919
- uses: actions/checkout@v4
2020
with: {fetch-depth: 0, submodules: recursive}
@@ -53,10 +53,10 @@ jobs:
5353
strategy:
5454
matrix:
5555
include:
56-
- python-version: 3.8
57-
numpy-version: 1.21
58-
- python-version: '3.10'
59-
numpy-version: 1.24
56+
- python-version: '3.10' # min supported
57+
numpy-version: 1.23
58+
- python-version: 3.12 # max supported
59+
numpy-version: 1.26
6060
steps:
6161
- uses: actions/checkout@v4
6262
with: {fetch-depth: 0, submodules: recursive}
@@ -75,8 +75,8 @@ jobs:
7575
runs-on: ubuntu-latest
7676
strategy:
7777
matrix:
78-
python-version: [3.9]
79-
numpy-version: [1.22]
78+
python-version: [3.11] # penultimate supported
79+
numpy-version: [1.25]
8080
steps:
8181
- uses: actions/checkout@v4
8282
with: {fetch-depth: 0, submodules: recursive}

recipe/conda_build_config.yaml

+13-23
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,24 @@
11
#creates pairs of versions using zip_keys, lists must be the same length
22
python:
3-
- 3.8
4-
- 3.9
5-
- 3.10
6-
- 3.8
7-
- 3.9
8-
- 3.10
9-
- 3.8
10-
- 3.9
11-
- 3.10
3+
- 3.10
4+
- 3.10
5+
- 3.10
6+
- 3.10
127
- 3.11
13-
- 3.8
14-
- 3.9
15-
- 3.10
168
- 3.11
9+
- 3.11
10+
- 3.11
11+
- 3.12
1712
numpy:
18-
- 1.21
19-
- 1.21
20-
- 1.21
21-
- 1.22
22-
- 1.22
23-
- 1.22
24-
- 1.23
25-
- 1.23
2613
- 1.23
27-
- 1.23
28-
- 1.24
29-
- 1.24
3014
- 1.24
15+
- 1.25
16+
- 1.26
17+
- 1.23
3118
- 1.24
19+
- 1.25
20+
- 1.26
21+
- 1.26
3222
zip_keys:
3323
- python
3424
- numpy

0 commit comments

Comments
 (0)