diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2ad293..a5190ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,11 +26,13 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: "${{ matrix.python-version }}" + allow-prereleases: true cache: pip - run: pip install nox diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index e976c83..e1f1d84 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -59,7 +59,7 @@ you can do so using: .. code-block:: bash - nox -s tests-3.12 + nox -s test-3.12 Running Linters --------------- diff --git a/noxfile.py b/noxfile.py index 2173332..0be1500 100644 --- a/noxfile.py +++ b/noxfile.py @@ -9,7 +9,7 @@ def lint(session): session.run("pre-commit", "run", "--all-files", *session.posargs) -@nox.session(python=["3.9", "3.10", "3.11", "3.12"]) +@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"]) def test(session): session.install("-e", ".[test]", silent=True) session.run("pytest", *session.posargs)