diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0c16b1..d72f777 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -133,7 +133,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"] os: [ubuntu-latest, macos-latest, windows-latest] exclude: - os: macos-latest diff --git a/pyproject.toml b/pyproject.toml index 8065691..0a73b41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ exclude = ''' )/ | docs/conf.py ''' -target-version = ['py37', 'py38', 'py39', 'py310', 'py311'] +target-version = ['py37', 'py38', 'py39', 'py310', 'py311', 'py312'] [tool.isort] known_third_party= [ diff --git a/setup.py b/setup.py index 722dfa1..15a6dd6 100644 --- a/setup.py +++ b/setup.py @@ -91,6 +91,7 @@ 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 :: Only", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", diff --git a/tox.ini b/tox.ini index 3fdb4e9..a8a013f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{37,38,39,310,311} + py{37,38,39,310,311,312} pypy3 build cov