diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e98852a..1d1318a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.10", "3.11", "3.12"] + python: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c010b7..c04cf73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to ## [Unreleased] +- Documenting support for python 3.13. (#86) + ## [0.8.0] - 2024-11-12 - Support linting of sources. diff --git a/pyproject.toml b/pyproject.toml index a2f8caf..8663fac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Intended Audience :: Developers", "Operating System :: OS Independent", ] @@ -118,4 +119,3 @@ fail_under = 80 exclude_also = [ "@overload" ] - diff --git a/tox.ini b/tox.ini index 86c068b..47d6005 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -env_list = py{310,311,312},lint,docs +env_list = py{310,311,312,313},lint,docs skip_missing_interpreters = true