Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST: Python 3.13 support #3210

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 38 additions & 32 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,49 +26,55 @@ jobs:
strategy:
matrix:
include:
- name: Code style checks
os: ubuntu-latest
python: 3.x
toxenv: codestyle
allow_failure: false
# - name: Code style checks
# os: ubuntu-latest
# python: 3.x
# toxenv: codestyle
# allow_failure: false

- name: PEP 517
os: ubuntu-latest
python: 3.x
toxenv: pep517
allow_failure: false
# - name: PEP 517
# os: ubuntu-latest
# python: 3.x
# toxenv: pep517
# allow_failure: false

- name: Security audit
os: ubuntu-latest
python: 3.x
toxenv: securityaudit
allow_failure: false
# - name: Security audit
# os: ubuntu-latest
# python: 3.x
# toxenv: securityaudit
# allow_failure: false

- name: Python 3.11 with coverage checking, all deps, and remote data
os: ubuntu-latest
python: '3.11'
toxenv: py311-test-alldeps-cov
toxposargs: --remote-data --run-slow
allow_failure: false
# - name: Python 3.11 with coverage checking, all deps, and remote data
# os: ubuntu-latest
# python: '3.11'
# toxenv: py311-test-alldeps-cov
# toxposargs: --remote-data --run-slow
# allow_failure: false

- name: OS X - Python 3.12
os: macos-latest
python: '3.12'
toxenv: py312-test
allow_failure: false
# - name: OS X - Python 3.12
# os: macos-latest
# python: '3.12'
# toxenv: py312-test
# allow_failure: false

# - name: Windows - Python 3.10
# os: windows-latest
# python: '3.10'
# toxenv: py310-test
# allow_failure: false

- name: Windows - Python 3.10
- name: Linux - Python 3.13
os: windows-latest
python: '3.10'
toxenv: py310-test
python: '3.13'
toxenv: py313-test
allow_failure: false

# This also runs on cron but we want to make sure new changes
# won't break this job at the PR stage.
- name: Python 3.12 with latest dev versions of key dependencies, and remote data
- name: Python 3.13 with latest dev versions of key dependencies, and remote data
os: ubuntu-latest
python: '3.12'
toxenv: py312-test-devdeps
python: '3.13'
toxenv: py313-test-devdeps
toxposargs: --remote-data --run-slow
allow_failure: true

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{310,311,312}-test{,-alldeps,-devdeps,-predeps}{-romandeps}{,-cov}
py{310,311,312,313}-test{,-alldeps,-devdeps,-predeps}{-romandeps}{,-cov}
linkcheck
codestyle
pep517
Expand Down
Loading