diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d21207e..6443b3b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"] os: [ubuntu-latest, windows-latest] tox_env: ["py"] include: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 005dd03..83cb270 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Releases ======== +UNRELEASED +---------- + +* `#503 `_: Python 3.14 is now officially supported. + 3.14.0 (2024-03-21) ------------------- diff --git a/pyproject.toml b/pyproject.toml index 2500408..f73f8ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Software Development :: Testing", ] diff --git a/tox.ini b/tox.ini index 32a5bed..f1c0e98 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.5.3 -envlist = py{38,39,310,311,312,313}, norewrite, pytest6 +envlist = py{38,39,310,311,312,313,314}, norewrite, pytest6 [testenv] deps =