From 8c1f7c3952b126240bce02bd79bd7090820114b3 Mon Sep 17 00:00:00 2001 From: wbond Date: Wed, 11 Oct 2023 19:05:25 -0400 Subject: [PATCH] Explicitly mark Python 3.12 as supported --- readme.md | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 6edd99c..edff7aa 100644 --- a/readme.md +++ b/readme.md @@ -129,7 +129,7 @@ faster to an order of magnitude or more. ## Dependencies -Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 or pypy. +Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 or pypy. *No third-party packages required.* ## Installation diff --git a/setup.py b/setup.py index 8822fa1..9534368 100644 --- a/setup.py +++ b/setup.py @@ -140,6 +140,7 @@ def run(self): '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', diff --git a/tox.ini b/tox.ini index 4c5c413..087b802 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,py32,py33,py34,py35,py36,py37,py38,py39,py310,py311,pypy +envlist = py26,py27,py32,py33,py34,py35,py36,py37,py38,py39,py310,py311,py312,pypy [testenv] deps = -rrequires/ci