diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 759bf6813..304f5286e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,11 @@ jobs: matrix: include: + - name: Tests, Python 3.14, Ubuntu + os: ubuntu-latest + nox_session: tests-3.14(all) + python: '3.14' + - name: Tests, Python 3.13, Ubuntu os: ubuntu-latest nox_session: tests-3.13(all) diff --git a/changelog/401.feature.rst b/changelog/401.feature.rst new file mode 100644 index 000000000..6c0754987 --- /dev/null +++ b/changelog/401.feature.rst @@ -0,0 +1 @@ +Added support for Python 3.14. diff --git a/noxfile.py b/noxfile.py index 2205d7ab5..8dd9179e5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -4,7 +4,7 @@ nox.options.default_venv_backend = "uv" -supported_python_versions = ("3.11", "3.12", "3.13") +supported_python_versions = ("3.11", "3.12", "3.13", "3.14") maxpython = max(supported_python_versions) minpython = min(supported_python_versions)