diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index 9033153..740e7ac 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -15,6 +15,7 @@ jobs: - {name: '3.11', python: '3.11', tox: py311} - {name: '3.12', python: '3.12', tox: py312} - {name: '3.13', python: '3.13', tox: py313} + - {name: '3.14', python: '3.14', tox: py314} steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 diff --git a/pyproject.toml b/pyproject.toml index e4ab78c..bb030a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] requires-python = ">=3.11" dependencies = [ diff --git a/tox.ini b/tox.ini index 5f06856..8c536b3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py311,py312,py313 +envlist = lint,py311,py312,py313,py314 skip_missing_interpreters = True [testenv]