From fe0c1ab7ec33f38566e1ebe461327a05d281d32c Mon Sep 17 00:00:00 2001 From: John Franey <1728528+johnfraney@users.noreply.github.com> Date: Fri, 22 Nov 2024 14:10:20 -0400 Subject: [PATCH] chore: officially support Python 3.13 Adds Python 3.13 as a supported version in the classifiers that appear on PyPI and includes that version in the Tox tests to confirm compatibility --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f4d1b54..5fa47b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", @@ -95,7 +96,7 @@ addopts = "--doctest-modules" legacy_tox_ini = """ [tox] skipsdist = True -envlist = py310,py311,py312,pypy3.10 +envlist = py310,py311,py312,py313,pypy3.10 [testenv] skip_install = true