diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2f7b32..c56c51e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] env: HATCH_ENV: "ci" steps: @@ -52,7 +52,7 @@ jobs: *) echo "Incorrect Hatch virtualenv." && exit 1 ;; esac - name: Test that Git tag version and Python package version match - if: github.ref_type == 'tag' && matrix.python-version == '3.13' + if: github.ref_type == 'tag' && matrix.python-version == '3.14' run: | GIT_TAG_VERSION=$GITHUB_REF_NAME PACKAGE_VERSION=$(hatch version) @@ -72,7 +72,7 @@ jobs: - name: Build Python package run: hatch build - name: Publish Python package to PyPI - if: github.ref_type == 'tag' && matrix.python-version == '3.13' + if: github.ref_type == 'tag' && matrix.python-version == '3.14' run: hatch publish -n -u __token__ -a ${{ secrets.PYPI_TOKEN }} docs-build: @@ -80,7 +80,7 @@ jobs: runs-on: ubuntu-latest env: HATCH_ENV: "docs" - PYTHON_VERSION: "3.13" + PYTHON_VERSION: "3.14" steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 diff --git a/pyproject.toml b/pyproject.toml index e938d10..be71637 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Typing :: Typed", ] dependencies = []