diff --git a/bindings/python/README.rst b/bindings/python/README.rst index e9b7bee..e6b466c 100644 --- a/bindings/python/README.rst +++ b/bindings/python/README.rst @@ -152,7 +152,7 @@ Measured with stable Rust 1.56, CPython 3.9.7 / PyPy3 7.3.6 on i8700K (12 cores) Python support -------------- -``jsonschema-rs`` supports CPython 3.7, 3.8, 3.9, 3.10, and 3.11. +``jsonschema-rs`` supports CPython 3.7, 3.8, 3.9, 3.10, 3.11, and 3.12. License ------- diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index d0608d2..652e4d4 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -3,10 +3,10 @@ name = "jsonschema_rs" description = "Fast JSON Schema validation for Python implemented in Rust" keywords = ["jsonschema", "validation", "rust"] authors = [ - {name = "Dmitry Dygalo", email = "dadygalo@gmail.com"} + {name = "Dmitry Dygalo", email = "dmitry@dygalo.dev"} ] maintainers = [ - {name = "Dmitry Dygalo", email = "dadygalo@gmail.com"} + {name = "Dmitry Dygalo", email = "dmitry@dygalo.dev"} ] readme = "README.rst" license = { text = "MIT" } @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Rust", ] diff --git a/bindings/python/tox.ini b/bindings/python/tox.ini index 0d7956a..78a750f 100644 --- a/bindings/python/tox.ini +++ b/bindings/python/tox.ini @@ -1,6 +1,6 @@ [tox] skipsdist = True -envlist = py{37,38,39,310,311} +envlist = py{37,38,39,310,311,312} [testenv] deps =