Skip to content

Commit c10c481

Browse files
authored
Merge pull request #998 from marshmallow-code/py314
Support Python 3.14
2 parents 73919e6 + 16a369e commit c10c481

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/build-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
matrix:
1717
include:
1818
- { name: "3.10-ma3", python: "3.10", tox: py310-marshmallow3 }
19-
- { name: "3.13-ma3", python: "3.13", tox: py313-marshmallow3 }
19+
- { name: "3.14-ma3", python: "3.14", tox: py314-marshmallow3 }
2020
- { name: "3.10-ma4", python: "3.10", tox: py310-marshmallow4 }
21-
- { name: "3.13-ma4", python: "3.13", tox: py313-marshmallow4 }
21+
- { name: "3.14-ma4", python: "3.14", tox: py314-marshmallow4 }
2222
- { name: "lowest", python: "3.10", tox: py310-lowest }
23-
- { name: "3.13-madev", python: "3.13", tox: py313-marshmallowdev }
23+
- { name: "3.14-madev", python: "3.14", tox: py314-marshmallowdev }
2424
steps:
2525
- uses: actions/checkout@v5.0.0
2626
- uses: actions/setup-python@v6
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v5.0.0
3636
- uses: actions/setup-python@v6
3737
with:
38-
python-version: "3.13"
38+
python-version: "3.14"
3939
- name: Install pypa/build
4040
run: python -m pip install build
4141
- name: Build a binary wheel and a source tarball
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/checkout@v5.0.0
5959
- uses: actions/setup-python@v6
6060
with:
61-
python-version: "3.13"
61+
python-version: "3.14"
6262
- run: python -m pip install tox
6363
- run: python -m tox -e lint
6464
publish-to-pypi:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
]
2223
keywords = [
2324
"apispec",

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{310,311,312,313}-marshmallow{3,4}
5-
py313-marshmallowdev
4+
py{310,311,312,313,314}-marshmallow{3,4}
5+
py314-marshmallowdev
66
py310-lowest
77
docs
88

0 commit comments

Comments
 (0)