From a3fdf08a04f06cd1ed1776d000d68bfd02744351 Mon Sep 17 00:00:00 2001 From: Yusuke Miyazaki Date: Sun, 21 Jul 2024 14:17:09 +0900 Subject: [PATCH] Add Python 3.12 support --- docs/quickstart.rst | 2 +- pyproject.toml | 1 + tox.ini | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index fc55fdd..faa0c41 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -3,7 +3,7 @@ Quickstart Requirements ------------ -* CPython 3.8/3.9/3.10/3.11 +* CPython 3.8/3.9/3.10/3.11/3.12 * WSGI application Installation diff --git a/pyproject.toml b/pyproject.toml index 17b79d3..f528d0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,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", "Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware", "Topic :: Software Development", diff --git a/tox.ini b/tox.ini index b13f887..17901a1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38,py39,py310,py311,mypy,pre-commit +envlist = py38,py39,py310,py311,py312,mypy,pre-commit isolated_build = true [gh-actions] @@ -7,7 +7,8 @@ python = 3.8: py38 3.9: py39 3.10: py310 - 3.11: py311, mypy, pre-commit + 3.11: py311 + 3.12: py312, mypy, pre-commit [testenv] deps = .[test]