From f8cc9cf9a6b97351a68ed38246070ddc8e96b59c Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Tue, 3 Oct 2023 10:30:21 -0400 Subject: [PATCH] Support Python 3.12 --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 2 +- setup.cfg | 1 + tox.ini | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e17301..dc6fa6a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: - '3.9' - '3.10' - '3.11' - - '3.12-dev' + - '3.12' - 'pypy-3.7' - 'pypy-3.8' - 'pypy-3.9' diff --git a/CHANGELOG.md b/CHANGELOG.md index baf4198..f95808d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ v0.5.0 (in development) ----------------------- -- Support Python 3.10 and 3.11 +- Support Python 3.10, 3.11, and 3.12 - Drop support for Python 3.6 v0.4.0.post1 (2021-06-05) diff --git a/setup.cfg b/setup.cfg index 26db6b1..d387936 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,6 +27,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 :: Python :: Implementation :: PyPy License :: OSI Approved :: MIT License diff --git a/tox.ini b/tox.ini index e38d7f7..5f15534 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py{36,37,38,39,310,311,py3}-click{6,7,8} +envlist = lint,py{36,37,38,39,310,311,312,py3}-click{6,7,8} skip_missing_interpreters = True isolated_build = True minversion = 3.3.0