Skip to content

Commit f05ef07

Browse files
authored
Support Python 3.13 (#50)
* Update pyproject.toml * Update workflows * Update project file * Bump version * Update project file * Fix PR comment * Update lockfile
1 parent 05cadfc commit f05ef07

File tree

4 files changed

+523
-811
lines changed

4 files changed

+523
-811
lines changed

.github/workflows/linting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Check out Git repository
1616
uses: actions/checkout@v3
1717

18-
- name: Set up Python ${{ matrix.python-version }}
18+
- name: Set up Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.13"
2222

2323
- name: Install linting dependencies
2424
run: |
@@ -32,4 +32,4 @@ jobs:
3232
flake8: true
3333
flake8_auto_fix: false
3434

35-
- uses: isort/isort-action@v1.0.0
35+
- uses: isort/isort-action@master

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- name: Check out Git repository

0 commit comments

Comments
 (0)