From 6af78734fc3431a7d75d3d1cc97139e965ba8ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Tue, 8 Oct 2024 00:16:43 -0600 Subject: [PATCH] Declare support for Python 3.13 Adds the PyPI trove classifier for Python 3.13. --- setup.py | 1 + tox.ini | 1 + 2 files changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 7f715f4b..1842129e 100755 --- a/setup.py +++ b/setup.py @@ -33,5 +33,6 @@ "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"]) diff --git a/tox.ini b/tox.ini index bbe28c2e..a97b1899 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ envlist = py310 py311 py312 + py313 pypy3 skip_missing_interpreters = true