From e15fc99415c53675e3362dd594675c5507a41070 Mon Sep 17 00:00:00 2001 From: ramnes Date: Wed, 18 Dec 2024 11:00:29 +0100 Subject: [PATCH] Officially support 3.13 --- .github/workflows/test.yml | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3514838..840bee7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: diff --git a/setup.py b/setup.py index db30c44..2085837 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ def get_description(): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", ], diff --git a/tox.ini b/tox.ini index c1496c0..248e075 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37,py38,py39,py310,py311,py312 +envlist = py37,py38,py39,py310,py311,py312,py313 [testenv] deps = -r requirements/tests.txt