diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eca347fff..9fda873f3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 5 strategy: matrix: - python-version: ["3.13"] + python-version: ["3.14"] permissions: contents: read steps: @@ -39,6 +39,7 @@ jobs: fail-fast: false matrix: python-version: + - "3.14" - "3.13" - "3.12" - "3.11" @@ -86,7 +87,7 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} verbose: true - name: Upload test coverage to Codecov (only with latest supported version) - if: startsWith(matrix.python-version, '3.13') + if: startsWith(matrix.python-version, '3.14') uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/pyproject.toml b/pyproject.toml index 1a1c5761b..37c6f3546 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,7 @@ classifiers = [ "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", ]