From 85b031cbde9cdbef403791dcbb9f5b9d81fe8eef Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Wed, 17 Sep 2025 13:46:02 +0200 Subject: [PATCH] chore: test with Python 3.14 --- .github/workflows/test.yml | 3 ++- pyproject.toml | 1 + tox.ini | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40474ca74..39a31abed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,7 +34,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest'] - python-version: ['3.10', '3.11', '3.12', '3.13'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] dependencies: ['latest', 'pre'] include: - os: ubuntu-latest @@ -63,6 +63,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Display Python version run: python -c "import sys; print(sys.version)" - name: Install tox diff --git a/pyproject.toml b/pyproject.toml index aee0a4da8..1e7973eab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] license = "Apache-2.0" license-files = ["LICENSE"] diff --git a/tox.ini b/tox.ini index 2c97cad46..b9ae52907 100644 --- a/tox.ini +++ b/tox.ini @@ -13,6 +13,7 @@ python = 3.11: py311 3.12: py312 3.13: py313 + 3.14: py314 [gh-actions:env] DEPENDS =