Skip to content

Commit 9eca273

Browse files
committed
Add Python 3.12 support in CI, tox, and setup files
1 parent 8d83b7c commit 9eca273

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
toxenv: py310
2121
- name: "3.11"
2222
toxenv: py311
23+
- name: "3.12"
24+
toxenv: py312
2325

2426
steps:
2527
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def get_long_description():
3838
"Programming Language :: Python :: 3.9",
3939
"Programming Language :: Python :: 3.10",
4040
"Programming Language :: Python :: 3.11",
41+
"Programming Language :: Python :: 3.12",
4142
"Programming Language :: Python :: Implementation :: CPython",
4243
"Programming Language :: Python :: Implementation :: PyPy",
4344
"Topic :: Text Processing",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,py3}
2+
envlist = py{37,38,39,310,311,312,py3}
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)