Skip to content

Commit

Permalink
Add Python 3.13 support (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger authored Sep 28, 2024
1 parent 88d0232 commit 696d0ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -183,6 +184,8 @@ jobs:
- lint-docs
permissions:
contents: write
concurrency:
group: publish-docs
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -213,6 +216,8 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
permissions:
contents: write
concurrency:
group: publish-github
needs:
- build-python
- coverage-python
Expand Down Expand Up @@ -247,6 +252,8 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
concurrency:
group: publish-pypi
needs:
- build-python
- coverage-python
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ django = [ "5.0" ]

# Django 5.1
[[tool.hatch.envs.hatch-test.matrix]]
python = [ "3.10", "3.11", "3.12" ]
python = [ "3.10", "3.11", "3.12", "3.13" ]
django = [ "5.1" ]

[tool.hatch.envs.hatch-test.overrides]
Expand Down

0 comments on commit 696d0ae

Please sign in to comment.