Skip to content

Commit

Permalink
BLD: Set python latest supported version to 3.11 (skypyproject#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
rrjbca committed Sep 8, 2024
1 parent 70eb149 commit 5758441
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: [3.9]
toxenv: [py39-test, py39-test-dev]
python: ['3.11']
toxenv: [py311-test, py311-test-dev]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:

- name: latest supported versions
os: ubuntu-latest
python: 3.9
toxenv: py39-test-all-latest-cov
python: '3.11'
toxenv: py311-test-all-latest-cov
toxposargs: --cov-report=xml:${GITHUB_WORKSPACE}/coverage.xml

- name: oldest supported versions
Expand All @@ -30,13 +30,13 @@ jobs:

- name: macOS latest supported
os: macos-latest
python: 3.9
toxenv: py39-test-latest
python: '3.11'
toxenv: py311-test-latest

- name: Windows latest supported
os: windows-latest
python: 3.9
toxenv: py39-test-latest
python: '3.11'
toxenv: py311-test-latest

steps:
- name: Checkout Repository
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
py{36,37,38,39}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
py{36,37,38,39}-test-numpy{116,117,118,119,120,121}
py{36,37,38,39}-test-scipy{12,13,14,15,16,17}
py{36,37,38,39}-test-astropy{40,41,42,43}
py{36,37,38,39,310,311}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
py{36,37,38,39,310,311}-test-numpy{116,117,118,119,120,121}
py{36,37,38,39,310,311}-test-scipy{12,13,14,15,16,17}
py{36,37,38,39,310,311}-test-astropy{40,41,42,43}
build_docs
linkcheck
codestyle
Expand Down

0 comments on commit 5758441

Please sign in to comment.