Skip to content

Commit 66208b2

Browse files
authored
Support Python 3.13 (#768)
Resolve #767
1 parent 2e605f1 commit 66208b2

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

.github/workflows/auto-testing.yml

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- '3.10'
1919
- '3.11'
2020
- '3.12'
21+
- '3.13'
2122
steps:
2223
- uses: actions/checkout@v4
2324
with:
@@ -50,6 +51,7 @@ jobs:
5051
- '3.10'
5152
- '3.11'
5253
- '3.12'
54+
- '3.13'
5355
steps:
5456
- uses: actions/checkout@v4
5557
with:

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@ Test by using tox. We test against the following versions.
412412
- 3.10
413413
- 3.11
414414
- 3.12
415+
- 3.13
415416

416417
To run all tests and to run ``flake8`` against all versions, use:
417418

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ def run(self):
204204
"Programming Language :: Python :: 3.10",
205205
"Programming Language :: Python :: 3.11",
206206
"Programming Language :: Python :: 3.12",
207+
"Programming Language :: Python :: 3.13",
207208
"Topic :: Software Development"
208209
]
209210
)

tox.ini

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
[tox]
2-
envlist = py3.9, py3.10, py3.11, py3.12, py3-flake8-src, py3-flake8-other
2+
envlist =
3+
py3.9,
4+
py3.10,
5+
py3.11,
6+
py3.12,
7+
py3.13,
8+
py3-flake8-src,
9+
py3-flake8-other
310

411
[testenv]
512
deps =

0 commit comments

Comments
 (0)