Skip to content

Commit

Permalink
test: with Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Dec 19, 2023
1 parent a06ecf6 commit 2ad694b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
python-version:
- "3.10"
- "3.11"
- "3.12.0-alpha - 3.12"
- "3.12"
- "3.13.0-alpha - 3.13"
- "pypy-3.10"
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
nox.options.error_on_external_run = True


@nox.session(python=[f"{py}3.{x}" for py in ("", "pypy") for x in range(10, 13)])
@nox.session(python=[f"{py}3.{x}" for py in ("", "pypy") for x in range(10, 14)])
def test(session: nox.Session) -> None:
"""Run tests."""
session.install(".[examples]", "-r", "requirements/test-requirements.txt")
Expand Down

0 comments on commit 2ad694b

Please sign in to comment.