Skip to content

Commit 159b04a

Browse files
committed
default to 3.13
1 parent 89b4dc8 commit 159b04a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Python ${{ matrix.python-version }}
1212
uses: actions/setup-python@v5
1313
with:
14-
python-version: 3.11
14+
python-version: 3.13
1515
- name: Install uv
1616
uses: astral-sh/setup-uv@v6
1717
- name: Test with nox

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ def pytest_all_deps(session: nox.Session) -> None:
2323
session.run("pytest")
2424

2525

26-
@nox.session(python="3.11")
26+
@nox.session(python="3.13")
2727
def pytest_typeguard(session: nox.Session) -> None:
2828
"""Run pytest with typeguard."""
2929
session.install(".[test,other]")
3030
session.run("coverage", "erase")
3131
session.run("pytest", "--typeguard-packages=adaptive")
3232

3333

34-
@nox.session(python="3.11")
34+
@nox.session(python="3.13")
3535
def coverage(session: nox.Session) -> None:
3636
"""Generate coverage report."""
3737
session.install(".[test,other]")

0 commit comments

Comments
 (0)