From: Sebastian Pipping Date: Thu, 27 Nov 2025 19:49:56 +0000 (+0100) Subject: Officially support Python 3.13 and 3.14 (#98) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbf809e4d3a99e75bc8dac17b4bc22d3978226e8;p=thirdparty%2Fpython-drafthorse.git Officially support Python 3.13 and 3.14 (#98) --- 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"],