From e6c42aab65bd7021d8bd72961686a73922150585 Mon Sep 17 00:00:00 2001 From: Mathieu Kniewallner Date: Sat, 10 Aug 2024 15:01:05 +0200 Subject: [PATCH] chore(package): add Python 3.13 classifier (#809) * chore(package): add Python 3.13 classifier * chore(tox): add Python 3.13 and deptry --- pyproject.toml | 1 + tox.ini | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4565289f..232211b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", diff --git a/tox.ini b/tox.ini index 8c9ebeb8..63931925 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] skipsdist = true -envlist = py38, py39, py310, py311, py312 +envlist = py38, py39, py310, py311, py312, py313 [testenv] allowlist_externals = pdm @@ -9,3 +9,4 @@ commands_pre = pdm install commands = pdm run pytest pdm run mypy + pdm run deptry python