]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Test on and declare support for Python 3.14 (#1233) master
authorAarni Koskela <akx@iki.fi>
Wed, 8 Oct 2025 09:51:02 +0000 (12:51 +0300)
committerGitHub <noreply@github.com>
Wed, 8 Oct 2025 09:51:02 +0000 (12:51 +0300)
.github/workflows/ci.yml
setup.py
tox.ini

index 2b31c90f96e87f323dbbdc9e707398770f734771..698479b52826a8b95464e836f68b21efc179177f 100644 (file)
@@ -48,6 +48,7 @@ jobs:
           - "3.11"
           - "3.12"
           - "3.13"
+          - "3.14"
           - "pypy3.10"
     env:
       BABEL_CLDR_NO_DOWNLOAD_PROGRESS: "1"
@@ -90,7 +91,7 @@ jobs:
       - uses: actions/checkout@v5
       - uses: actions/setup-python@v6
         with:
-          python-version: "3.13"
+          python-version: "3.14"
           cache: "pip"
           cache-dependency-path: "**/setup.py"
       - run: pip install build -e .
index 93e0bb77f495c716a7ab906d9c3e90196cf128ea..a8ac577541e536c676c6efb1cb243ae971484cc9 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -53,6 +53,7 @@ setup(
         'Programming Language :: Python :: 3.11',
         'Programming Language :: Python :: 3.12',
         'Programming Language :: Python :: 3.13',
+        'Programming Language :: Python :: 3.14',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Software Development :: Internationalization',
diff --git a/tox.ini b/tox.ini
index 8aaa8a3e359d785acf8cef0fb884eaf946a2459a..a48dca51289862c1174ccc64d3f5745f1cc4e405 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -32,3 +32,4 @@ python =
     3.11: py311
     3.12: py312
     3.13: py313
+    3.14: py314