From 791c84c3c4e777b64acf229e5babe67587d03d68 Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Tue, 3 Sep 2024 11:59:07 +1200 Subject: [PATCH] MAINT: add Python 3.13 classifier and tox env --- pyproject.toml | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cd32a1bb..b1406601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: GIS", "Topic :: Database", ] diff --git a/tox.ini b/tox.ini index 6cc0c57d..221f6402 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] requires = tox>=4 -env_list = py{39,310,311,312} +env_list = py{39,310,311,312,313} [testenv] description = run unit tests