Skip to content

Commit

Permalink
Merge pull request #982 from marshmallow-code/py313
Browse files Browse the repository at this point in the history
Support Python 3.13
  • Loading branch information
sirosen authored Nov 2, 2024
2 parents 16a002d + 273af05 commit d620336
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
matrix:
include:
- { name: "3.9", python: "3.9", tox: py39-marshmallow3 }
- { name: "3.12", python: "3.12", tox: py312-marshmallow3 }
- { name: "3.13", python: "3.13", tox: py313-marshmallow3 }
- { name: "lowest", python: "3.9", tox: py39-lowest }
- { name: "dev", python: "3.12", tox: py312-marshmallowdev }
- { name: "dev", python: "3.13", tox: py313-marshmallowdev }
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v5
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- 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 @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v4.0.0
- 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 @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
]
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist=
lint
py{39,310,311,312}-marshmallow3
py312-marshmallowdev
py{39,310,311,312,313}-marshmallow3
py313-marshmallowdev
py39-lowest
docs

Expand Down

0 comments on commit d620336

Please sign in to comment.