From d406c3f4edd7ee24e72f1b23a553d02a2c427683 Mon Sep 17 00:00:00 2001 From: Tsuyoshi Hombashi Date: Sat, 18 May 2024 17:15:58 +0900 Subject: [PATCH] Add support for Python 3.12 Signed-off-by: Tsuyoshi Hombashi --- .github/workflows/ci.yml | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74ed842..e4ba6d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,7 +134,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] os: [ubuntu-latest, macos-latest, windows-latest] timeout-minutes: 20 diff --git a/setup.py b/setup.py index 536c1d7..a97ce90 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ def get_release_command_class() -> Dict[str, Type[setuptools.Command]]: "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", "Topic :: Terminals", "Topic :: Utilities", diff --git a/tox.ini b/tox.ini index c2d4b2c..3a19ea0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{38,39,310,311} + py{38,39,310,311,312} build cov fmt