diff --git a/.github/workflows/nox.yml b/.github/workflows/nox.yml index adb0511..41ff8cf 100644 --- a/.github/workflows/nox.yml +++ b/.github/workflows/nox.yml @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.8", "3.9", "3.10", "3.11"] + python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] runs-on: "ubuntu-latest" steps: - uses: actions/checkout@v4 diff --git a/noxfile.py b/noxfile.py index 5bc70b6..3162183 100644 --- a/noxfile.py +++ b/noxfile.py @@ -4,7 +4,7 @@ import nox -PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"] +PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] @nox.session(python=PYTHON_VERSIONS, tags=["lint"])