Skip to content

Commit

Permalink
chore: test with python 3.13 (#800)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut authored Nov 23, 2024
1 parent 8534e05 commit 0ebb37a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
submodules: recursive
- uses: wntrblm/nox@2024.10.09
with:
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12, pypy3.9, pypy3.10"
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12, 3.13, pypy3.9, pypy3.10"
- name: "Run tests"
run: nox --error-on-missing-interpreters -s test
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

nox.options.sessions = ["lint", "test"]

ALL_CPYTHON = [f"3.{minor}" for minor in range(8, 12 + 1)]
ALL_CPYTHON = [f"3.{minor}" for minor in range(8, 13 + 1)]
ALL_PYPY = [f"pypy3.{minor}" for minor in range(9, 10 + 1)]
ALL_PYTHON = ALL_CPYTHON + ALL_PYPY

Expand Down

0 comments on commit 0ebb37a

Please sign in to comment.