diff --git a/setup.py b/setup.py index aa3dbff..fc059b8 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ PROJECT_DIR = Path(__file__).parent.resolve() README_FILE = PROJECT_DIR / "README.md" -VERSION = "3.1.0" +VERSION = "3.2.0" with open("requirements.txt", encoding="utf-8") as file: requirements = file.read().splitlines() @@ -32,6 +32,7 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", "Typing :: Typed", ], diff --git a/tox.ini b/tox.ini index 16ec7e1..2e47c54 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,12 @@ [tox] -envlist = py310, py311, lint, typing, coverage +envlist = py310, py311, py312, lint, typing, coverage skip_missing_interpreters = True [gh-actions] python = 3.10: py310, lint, typing, coverage 3.11: py311 + 3.12: py312 [testenv] commands =