From 9eca273d28181874a1a7c7165fa43eb29f8a9820 Mon Sep 17 00:00:00 2001 From: scpaes Date: Tue, 15 Jul 2025 11:43:23 -0300 Subject: [PATCH] Add Python 3.12 support in CI, tox, and setup files --- .github/workflows/ci.yml | 2 ++ setup.py | 1 + tox.ini | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da0e658..8332458 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,8 @@ jobs: toxenv: py310 - name: "3.11" toxenv: py311 + - name: "3.12" + toxenv: py312 steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 6befb9e..bc2dfe9 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ def get_long_description(): "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", "Topic :: Text Processing", diff --git a/tox.ini b/tox.ini index 9901cf3..a60ad25 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{37,38,39,310,311,py3} +envlist = py{37,38,39,310,311,312,py3} skip_missing_interpreters = true [testenv]