Skip to content

Commit

Permalink
Start testing in Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
AWhetter committed May 20, 2024
1 parent 7b10bb2 commit d45f2ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
# Keep this in sync with tox.ini
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
isolated_build = true
envlist =
# Keep this in sync with .github/workflows/main.yml
py{38,39,310,311,312}
py{38,39,310,311,312,313}
formatting
typecheck
lint
Expand All @@ -14,8 +14,9 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311, formatting, typecheck, lint, docs, release_notes
3.12: py312
3.11: py311
3.12: py312, formatting, typecheck, lint, docs, release_notes
3.13: py313

[testenv]
deps =
Expand All @@ -25,7 +26,6 @@ commands =
pytest {posargs}

[testenv:formatting]
basepython = python312
skip_install = true
deps =
black
Expand Down

0 comments on commit d45f2ed

Please sign in to comment.