Skip to content

Commit

Permalink
Add Python 3.13 support (#1930)
Browse files Browse the repository at this point in the history
* Allow Python 3.13 in pyproject

* Add Python 3.13 to GitHub actions

* Run `poetry update`

* fix failing test

* update poetry.lock

* update poetry.lock again

---------

Co-authored-by: Jonathan Wren <[email protected]>
  • Loading branch information
micahellison and wren authored Oct 2, 2024
1 parent de79733 commit 96d89ca
Show file tree
Hide file tree
Showing 5 changed files with 406 additions and 413 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing_prs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- run: git config --global core.autocrlf false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing_schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- run: git config --global core.autocrlf false
Expand Down
Loading

0 comments on commit 96d89ca

Please sign in to comment.