Skip to content

Commit f58ce7e

Browse files
committed
Add explicit support for Python up to 3.13
1 parent b7e4f7c commit f58ce7e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "pypy3.9"]
11+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]
1212

1313
steps:
1414

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,9 @@ def read(fname):
3030
'Programming Language :: Python :: 3.7',
3131
'Programming Language :: Python :: 3.8',
3232
'Programming Language :: Python :: 3.9',
33+
'Programming Language :: Python :: 3.10',
34+
'Programming Language :: Python :: 3.11',
35+
'Programming Language :: Python :: 3.12',
36+
'Programming Language :: Python :: 3.13',
3337
],
3438
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,pypy,docs
2+
envlist = py37,py38,py39,py310,py311,py312,py313,pypy,docs
33
[testenv]
44
changedir = {envtmpdir}
55
deps=-r{toxinidir}/test-requirements.txt

0 commit comments

Comments
 (0)