Skip to content

Commit d620336

Browse files
authored
Merge pull request #982 from marshmallow-code/py313
Support Python 3.13
2 parents 16a002d + 273af05 commit d620336

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
matrix:
1515
include:
1616
- { name: "3.9", python: "3.9", tox: py39-marshmallow3 }
17-
- { name: "3.12", python: "3.12", tox: py312-marshmallow3 }
17+
- { name: "3.13", python: "3.13", tox: py313-marshmallow3 }
1818
- { name: "lowest", python: "3.9", tox: py39-lowest }
19-
- { name: "dev", python: "3.12", tox: py312-marshmallowdev }
19+
- { name: "dev", python: "3.13", tox: py313-marshmallowdev }
2020
steps:
2121
- uses: actions/checkout@v4.0.0
2222
- uses: actions/setup-python@v5
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-python@v5
3333
with:
34-
python-version: "3.11"
34+
python-version: "3.13"
3535
- name: Install pypa/build
3636
run: python -m pip install build
3737
- name: Build a binary wheel and a source tarball
@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/checkout@v4.0.0
5555
- uses: actions/setup-python@v5
5656
with:
57-
python-version: "3.11"
57+
python-version: "3.13"
5858
- run: python -m pip install tox
5959
- run: python -m tox -e lint
6060
publish-to-pypi:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
2324
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
2425
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
2526
]

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
envlist=
33
lint
4-
py{39,310,311,312}-marshmallow3
5-
py312-marshmallowdev
4+
py{39,310,311,312,313}-marshmallow3
5+
py313-marshmallowdev
66
py39-lowest
77
docs
88

0 commit comments

Comments
 (0)