From cbf809e4d3a99e75bc8dac17b4bc22d3978226e8 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 27 Nov 2025 20:49:56 +0100 Subject: [PATCH] Officially support Python 3.13 and 3.14 (#98) --- .github/workflows/tests.yml | 2 ++ setup.py | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2a3d452..c7baea8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,6 +15,8 @@ jobs: python-version: - "3.11" - "3.12" + - "3.13" + - "3.14" steps: - uses: actions/checkout@v2 - name: Install Dependencies diff --git a/setup.py b/setup.py index b88013d..b898c14 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,10 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ], keywords="xml banking sepa", install_requires=["lxml", "pypdf"], -- 2.47.3