Skip to content

Commit

Permalink
Bump Python 3.13
Browse files Browse the repository at this point in the history
- Update the Python version in pyproject.toml and setup.cfg
- Update the Python version in .github/workflows/pypi-publish.yml
- `poetry update` to update the lock file
  • Loading branch information
kitsuyui committed Oct 15, 2024
1 parent be0769b commit eaf5742
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 82 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
types: [prereleased, released]

env:
python_version: 3.12
python_version: 3.13

jobs:
deploy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
run: poetry run poe coverage-xml

- name: Upload coverage report to Codecov
if: matrix.python == '3.12'
if: matrix.python == '3.13'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
Loading

0 comments on commit eaf5742

Please sign in to comment.