Skip to content

Commit b8c1fb4

Browse files
committed
BLD: Set python latest supported version to 3.12 (skypyproject#619)
1 parent 7689fac commit b8c1fb4

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/compatibility.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
python: ['3.11']
13-
toxenv: [py311-test, py311-test-dev]
12+
python: ['3.12']
13+
toxenv: [py312-test, py312-test-dev]
1414
release: [main, latest]
1515
steps:
1616
- name: Checkout Repository

.github/workflows/tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919

2020
- name: latest supported versions
2121
os: ubuntu-latest
22-
python: '3.11'
23-
toxenv: py311-test-all-latest-cov
22+
python: '3.12'
23+
toxenv: py312-test-all-latest-cov
2424
toxposargs: --cov-report=xml:${GITHUB_WORKSPACE}/coverage.xml
2525

2626
- name: oldest supported versions
@@ -30,13 +30,13 @@ jobs:
3030

3131
- name: macOS latest supported
3232
os: macos-latest
33-
python: '3.11'
34-
toxenv: py311-test-latest
33+
python: '3.12'
34+
toxenv: py312-test-latest
3535

3636
- name: Windows latest supported
3737
os: windows-latest
38-
python: '3.11'
39-
toxenv: py311-test-latest
38+
python: '3.12'
39+
toxenv: py312-test-latest
4040

4141
steps:
4242
- name: Checkout Repository

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310,311}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
4-
py{37,38,39,310,311}-test-numpy{116,117,118,119,120,121,122,123,124,125,126}
5-
py{37,38,39,310,311}-test-scipy{16,17,18,19,110,111,112,113}
6-
py{37,38,39,310,311}-test-astropy{40,41,42,43,50,51,52,53,60,61}
3+
py{37,38,39,310,311,312}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
4+
py{37,38,39,310,311,312}-test-numpy{116,117,118,119,120,121,122,123,124,125,126}
5+
py{37,38,39,310,311,312}-test-scipy{16,17,18,19,110,111,112,113}
6+
py{37,38,39,310,311,312}-test-astropy{40,41,42,43,50,51,52,53,60,61}
77
build_docs
88
linkcheck
99
codestyle

0 commit comments

Comments
 (0)