From 3bcc34e89fd21431fda14a2719d516aa24ccf05c Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 8 Oct 2025 12:51:02 +0300 Subject: [PATCH] Test on and declare support for Python 3.14 (#1233) --- .github/workflows/ci.yml | 3 ++- setup.py | 1 + tox.ini | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) 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 -- 2.47.3