From 88a0b06597214979ec65dfca01277205561b0228 Mon Sep 17 00:00:00 2001 From: Marko Ristin-Kaufmann Date: Tue, 28 Oct 2025 16:15:21 +0100 Subject: [PATCH] Support Python 3.13 We add support for Python 3.13 and include it in our continuous integration. --- .github/workflows/ci.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54a97bc..9288e20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@master diff --git a/setup.py b/setup.py index f1847a2..0bb1525 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', # fmt: on ], license="License :: OSI Approved :: MIT License",