diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b31c90f9..698479b52 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 93e0bb77f..a8ac57754 100755 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ def run(self): '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 8aaa8a3e3..a48dca512 100644 --- a/tox.ini +++ b/tox.ini @@ -32,3 +32,4 @@ python = 3.11: py311 3.12: py312 3.13: py313 + 3.14: py314