Skip to content

Commit

Permalink
Merge pull request #948 from marshmallow-code/py13
Browse files Browse the repository at this point in the history
Support Python 3.13
  • Loading branch information
lafrech authored Oct 17, 2024
2 parents ed90795 + 25b5994 commit 9228187
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
tox: py39-marshmallow3,
}
- {
name: "3.12-ma3",
python: "3.12",
name: "3.13-ma3",
python: "3.13",
os: ubuntu-latest,
tox: py312-marshmallow3,
tox: py313-marshmallow3,
}
- {
name: "3.12-madev",
python: "3.12",
name: "3.13-madev",
python: "3.13",
os: ubuntu-latest,
tox: py312-marshmallowdev,
tox: py313-marshmallowdev,
}
steps:
- uses: actions/[email protected]
Expand All @@ -47,7 +47,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- name: Install pypa/build
run: python -m pip install build
- name: Build a binary wheel and a source tarball
Expand All @@ -70,7 +70,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 tox
- run: python -m tox -e lint
publish-to-pypi:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = [
"apispec",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist=
lint
py{39,310,311,312}-marshmallow3
py{39,310,311,312,313}-marshmallow3
py312-marshmallowdev
docs

Expand Down

0 comments on commit 9228187

Please sign in to comment.