Skip to content

Commit

Permalink
Test Python 3.13 (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 2, 2024
1 parent 498601b commit 23c16b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ you can do so using:

.. code-block:: bash
nox -s tests-3.12
nox -s test-3.12
Running Linters
---------------
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 23c16b0

Please sign in to comment.