]> git.ipfire.org Git - thirdparty/python-drafthorse.git/commitdiff
Officially support Python 3.13 and 3.14 (#98)
authorSebastian Pipping <sebastian@pipping.org>
Thu, 27 Nov 2025 19:49:56 +0000 (20:49 +0100)
committerGitHub <noreply@github.com>
Thu, 27 Nov 2025 19:49:56 +0000 (20:49 +0100)
.github/workflows/tests.yml
setup.py

index 2a3d45255fc8ceb993892012b36bce718c47033e..c7baea855a3f30b679506b48b375ab07f8fa1f0a 100644 (file)
@@ -15,6 +15,8 @@ jobs:
         python-version:
           - "3.11"
           - "3.12"
+          - "3.13"
+          - "3.14"
     steps:
       - uses: actions/checkout@v2
       - name: Install Dependencies
index b88013d0712820ab94ee7a65698a4290624bfc1e..b898c149b7522eee0edda00947fd3c6e95fa924c 100644 (file)
--- 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"],