diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b9a3dc..3bde1e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: fail-fast: false matrix: python-version: - ["3.9", "3.10", "3.11", "3.12-dev", "pypy-3.10"] + ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"] os: [ubuntu-latest, macos-latest, windows-latest] timeout-minutes: 20 diff --git a/setup.py b/setup.py index f838281..10bcfca 100644 --- a/setup.py +++ b/setup.py @@ -73,6 +73,8 @@ def get_release_command_class() -> Dict[str, Type[setuptools.Command]]: "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", diff --git a/tox.ini b/tox.ini index fe8c6ea..73c0ce4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{39,310,311,312} + py{39,310,311,312,313} build cov docs