From 794324ac000095aa6409a4958b44a17dc25d3b49 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Thu, 17 Aug 2023 04:26:32 +0100 Subject: [PATCH] Declare support for Python 3.13 --- pyproject.toml | 2 ++ tox.ini | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bd4b30f73a0..4cae7c1dd86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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}' diff --git a/tox.ini b/tox.ini index a3dc5621123..fb7e344ff0b 100644 --- a/tox.ini +++ b/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 =