Skip to content

Commit

Permalink
Merge pull request #2319 from marshmallow-code/py313
Browse files Browse the repository at this point in the history
Support Python 3.13
  • Loading branch information
lafrech authored Oct 9, 2024
2 parents b1418d2 + 0eb03c9 commit 70f7bbb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- run: python -m pip install --upgrade pip
- run: python -m pip install tox
- run: python -m tox -e mypy-test
Expand All @@ -24,7 +24,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- run: pip install tox
- run: tox -e docs
tests:
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
include:
- { name: "3.9", python: "3.9", tox: py39 }
- { name: "3.12", python: "3.12", tox: py312 }
- { name: "3.13", python: "3.13", tox: py313 }
steps:
- uses: actions/[email protected]
- uses: actions/setup-python@v5
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = ["packaging>=17.0"]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint,mypy-test,py{39,310,311,312},docs
envlist = lint,mypy-test,py{39,310,311,312,313},docs

[testenv]
extras = tests
Expand Down

0 comments on commit 70f7bbb

Please sign in to comment.