From 8c31dc369cb732dd040348fcdc9c576a20fd68ea Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Wed, 16 Oct 2024 15:59:52 +0300 Subject: [PATCH] Add Python 3.13 support --- .github/workflows/build.yml | 1 + appveyor.yml | 1 + setup.py | 1 + tox.ini | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a128b8..cb0e9ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" - "pypy3.10" steps: diff --git a/appveyor.yml b/appveyor.yml index 27bb3e2..066a070 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,6 +10,7 @@ environment: - PYTHON: "C:\\Python310" - PYTHON: "C:\\Python311" - PYTHON: "C:\\Python312" + - PYTHON: "C:\\Python313" init: - "echo %PYTHON%" diff --git a/setup.py b/setup.py index 8c0c0a3..3c331f3 100755 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ def read(filename): '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 a915699..6e062e4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, py39, py310, py311, py312, pypy3, flake8 +envlist = py37, py38, py39, py310, py311, py312, py313, pypy3, flake8 [testenv] deps =