From 7566034d82e02bb48a7ff9fec682e5b6b13909ce Mon Sep 17 00:00:00 2001 From: Akinori Hattori Date: Fri, 20 Oct 2023 22:40:48 +0900 Subject: [PATCH] Support Python 3.12 --- .github/workflows/ci.yml | 3 +++ CHANGES.rst | 1 + setup.cfg | 1 + tox.ini | 2 +- 4 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02a8da4..4ec63f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,7 @@ jobs: - py39 - py310 - py311 + - py312 include: - platform: Linux os: ubuntu-latest @@ -30,6 +31,8 @@ jobs: python-version: '3.10' - toxenv: py311 python-version: '3.11' + - toxenv: py312 + python-version: '3.12' fail-fast: false name: tox -e ${{ matrix.toxenv }} on ${{ matrix.platform }} runs-on: ${{ matrix.os }} diff --git a/CHANGES.rst b/CHANGES.rst index 6f28c08..c61117b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,7 @@ Version 0.3 * Drop Python 3.6 support. * Support Python 3.11. * Drop Python 3.7 support. +* Support Python 3.12. Version 0.2 diff --git a/setup.cfg b/setup.cfg index 2dc1a0a..91ae7ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ classifiers = Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Topic :: Internet :: WWW/HTTP :: Dynamic Content Topic :: Internet :: WWW/HTTP :: WSGI Topic :: Software Development :: Libraries :: Application Frameworks diff --git a/tox.ini b/tox.ini index 4f20576..e0d90dc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.3 -envlist = py38, py39, py310, py311 +envlist = py38, py39, py310, py311, py312 isolated_build = True [testenv]