mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Declare support for Python 3.13
This commit is contained in:
parent
03bceac43f
commit
794324ac00
@ -34,6 +34,7 @@ classifiers = [
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
"Framework :: Sphinx",
|
||||
@ -299,6 +300,7 @@ select = [
|
||||
"E116", # Unexpected indentation (comment)
|
||||
"E117", # Over-indented (comment)
|
||||
"E201", # Whitespace after '{symbol}'
|
||||
"E201", # Whitespace after '{symbol}'
|
||||
"E202", # Whitespace before '{symbol}'
|
||||
"E203", # Whitespace before '{punctuation}'
|
||||
"E211", # Whitespace before '{bracket}'
|
||||
|
4
tox.ini
4
tox.ini
@ -1,6 +1,6 @@
|
||||
[tox]
|
||||
minversion = 2.4.0
|
||||
envlist = py{39,310,311,312}
|
||||
envlist = py{39,310,311,312,313}
|
||||
isolated_build = True
|
||||
|
||||
[testenv]
|
||||
@ -17,7 +17,7 @@ passenv =
|
||||
EPUBCHECK_PATH
|
||||
TERM
|
||||
description =
|
||||
py{39,310,311,312}: Run unit tests against {envname}.
|
||||
py{39,310,311,312,313}: Run unit tests against {envname}.
|
||||
extras =
|
||||
test
|
||||
setenv =
|
||||
|
Loading…
Reference in New Issue
Block a user