Skip to content

Commit 437ccf4

Browse files
Test on Python 3.13
1 parent c66483f commit 437ccf4

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
strategy:
1515
matrix:
1616
python:
17+
- "3.9" # oldest Python supported by PSF
1718
- "3.10"
1819
- "3.11"
19-
- "3.12" # newest Python that is stable
20+
- "3.12"
21+
- "3.13" # newest Python that is stable
2022
platform:
2123
- ubuntu-latest
2224
- macos-latest

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"Programming Language :: Python :: 3.10",
5151
"Programming Language :: Python :: 3.11",
5252
"Programming Language :: Python :: 3.12",
53+
"Programming Language :: Python :: 3.13",
5354
"Programming Language :: Python :: Implementation :: CPython",
5455
"License :: OSI Approved :: BSD License",
5556
"Operating System :: OS Independent",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{34,35,36,37,38,39,310,311,312},lint
7+
envlist = py{34,35,36,37,38,39,310,311,312,313},lint
88

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)