From: Aarni Koskela Date: Wed, 8 Oct 2025 09:51:02 +0000 (+0300) Subject: Test on and declare support for Python 3.14 (#1233) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=thirdparty%2Fbabel.git Test on and declare support for Python 3.14 (#1233) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b31c90f..698479b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 . diff --git a/setup.py b/setup.py index 93e0bb77..a8ac5775 100755 --- 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 8aaa8a3e..a48dca51 100644 --- a/tox.ini +++ b/tox.ini @@ -32,3 +32,4 @@ python = 3.11: py311 3.12: py312 3.13: py313 + 3.14: py314