Skip to content

Commit 1297c3b

Browse files
committed
update python versions to test in github action files
1 parent 0194eb5 commit 1297c3b

3 files changed

Lines changed: 25 additions & 19 deletions

File tree

.github/workflows/test-build-from-source.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,17 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest]
22-
python-version: [3.7, 3.8, 3.9]
22+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2323
tf-label: ['', '-tf']
2424
include:
25-
- python-version: 3.7
26-
python-version-nd: 37
27-
- python-version: 3.8
28-
python-version-nd: 38
29-
- python-version: 3.9
25+
- python-version: "3.9"
3026
python-version-nd: 39
27+
- python-version: "3.10"
28+
python-version-nd: 310
29+
- python-version: "3.11"
30+
python-version-nd: 311
31+
- python-version: "3.12"
32+
python-version-nd: 312
3133
- tf-label: '-tf'
3234
tf-label-pip: '[tf]'
3335

.github/workflows/test-conda-forge-install.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,17 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest]
17-
python-version: [3.7, 3.8, 3.9]
17+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1818
include:
19-
- python-version: 3.7
20-
python-version-nd: 37
21-
- python-version: 3.8
22-
python-version-nd: 38
23-
- python-version: 3.9
19+
- python-version: "3.9"
2420
python-version-nd: 39
25-
21+
- python-version: "3.10"
22+
python-version-nd: 310
23+
- python-version: "3.11"
24+
python-version-nd: 311
25+
- python-version: "3.12"
26+
python-version-nd: 312
27+
2628
steps:
2729
- uses: actions/checkout@v2
2830
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/test-pypi-install.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest]
15-
python-version: [3.7, 3.8, 3.9]
15+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1616
include:
17-
- python-version: 3.7
18-
python-version-nd: 37
19-
- python-version: 3.8
20-
python-version-nd: 38
21-
- python-version: 3.9
17+
- python-version: "3.9"
2218
python-version-nd: 39
19+
- python-version: "3.10"
20+
python-version-nd: 310
21+
- python-version: "3.11"
22+
python-version-nd: 311
23+
- python-version: "3.12"
24+
python-version-nd: 312
2325

2426
steps:
2527
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)