Skip to content

Commit

Permalink
github: support Python3.13 (#26)
Browse files Browse the repository at this point in the history
This commit adds support for Python 3.13 to GitHub workflows.
  • Loading branch information
djmoch authored Dec 30, 2024
1 parent 2b665f7 commit e2e7bdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.12"
python-version: "3.13"
- name: Build package
run: |
python -m pip install build
Expand Down

0 comments on commit e2e7bdc

Please sign in to comment.