From 0398482ddfa775c5c66bb6053c34b41e7f11b261 Mon Sep 17 00:00:00 2001 From: John Kurkowski Date: Mon, 4 Nov 2024 15:29:07 -0800 Subject: [PATCH] Support Python 3.13 (#341) --- .github/workflows/ci.yml | 1 + pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d5cc99..93b3b3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: {python-version: "3.10", toxenv: "py310"}, {python-version: "3.11", toxenv: "py311"}, {python-version: "3.12", toxenv: "py312"}, + {python-version: "3.13", toxenv: "py313"}, {python-version: "pypy3.9", toxenv: "pypy39"}, {python-version: "pypy3.10", toxenv: "pypy310"}, ] diff --git a/pyproject.toml b/pyproject.toml index 6ec12ed..1a07d66 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", ] requires-python = ">=3.9" dynamic = ["version"] diff --git a/tox.ini b/tox.ini index 4d80a7a..9ebfbf3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{39,310,311,312,py39,py310},codestyle,lint,typecheck +envlist = py{39,310,311,312,313,py39,py310},codestyle,lint,typecheck [testenv] commands = pytest {posargs}