Skip to content

Commit 23c16b0

Browse files
authored
Test Python 3.13 (#169)
1 parent 498601b commit 23c16b0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ jobs:
2626
- "3.10"
2727
- "3.11"
2828
- "3.12"
29+
- "3.13"
2930
steps:
3031
- uses: actions/checkout@v4
3132
- uses: actions/setup-python@v4
3233
with:
3334
python-version: "${{ matrix.python-version }}"
35+
allow-prereleases: true
3436
cache: pip
3537

3638
- run: pip install nox

CONTRIBUTING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ you can do so using:
5959

6060
.. code-block:: bash
6161
62-
nox -s tests-3.12
62+
nox -s test-3.12
6363
6464
Running Linters
6565
---------------

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def lint(session):
99
session.run("pre-commit", "run", "--all-files", *session.posargs)
1010

1111

12-
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
12+
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
1313
def test(session):
1414
session.install("-e", ".[test]", silent=True)
1515
session.run("pytest", *session.posargs)

0 commit comments

Comments
 (0)