diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ec92c0cfe..bac1b43e9 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -26,6 +26,12 @@ jobs: python: '3.11' noxposargs: --durations=10 + - name: Python 3.12 (Windows) + os: windows-latest + noxenv: tests-3.12 + python: '3.12' + noxposargs: --durations=10 + - name: Linters os: ubuntu-latest python: '3.11' diff --git a/noxfile.py b/noxfile.py index d527ee771..79e9ce735 100644 --- a/noxfile.py +++ b/noxfile.py @@ -2,7 +2,7 @@ nox.options.sessions = ["tests", "linters"] -python_versions = ("3.9", "3.10", "3.11") +python_versions = ("3.9", "3.10", "3.11", "3.12") sphinx_paths = ["docs", "docs/_build/html"] sphinx_fail_on_warnings = ["-W", "--keep-going"]