Skip to content

Commit 794324a

Browse files
committed
Declare support for Python 3.13
1 parent 03bceac commit 794324a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers = [
3434
"Programming Language :: Python :: 3.10",
3535
"Programming Language :: Python :: 3.11",
3636
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3738
"Programming Language :: Python :: Implementation :: CPython",
3839
"Programming Language :: Python :: Implementation :: PyPy",
3940
"Framework :: Sphinx",
@@ -299,6 +300,7 @@ select = [
299300
"E116", # Unexpected indentation (comment)
300301
"E117", # Over-indented (comment)
301302
"E201", # Whitespace after '{symbol}'
303+
"E201", # Whitespace after '{symbol}'
302304
"E202", # Whitespace before '{symbol}'
303305
"E203", # Whitespace before '{punctuation}'
304306
"E211", # Whitespace before '{bracket}'

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 2.4.0
3-
envlist = py{39,310,311,312}
3+
envlist = py{39,310,311,312,313}
44
isolated_build = True
55

66
[testenv]
@@ -17,7 +17,7 @@ passenv =
1717
EPUBCHECK_PATH
1818
TERM
1919
description =
20-
py{39,310,311,312}: Run unit tests against {envname}.
20+
py{39,310,311,312,313}: Run unit tests against {envname}.
2121
extras =
2222
test
2323
setenv =

0 commit comments

Comments
 (0)