Skip to content

Commit 9c57bf6

Browse files
authored
Merge pull request #809 from marshmallow-code/py_311
Support Python 3.11
2 parents 593c8cb + cdeed1a commit 9c57bf6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
matrix:
2626
include:
2727
- {name: '3.7-ma3', python: '3.7', os: ubuntu-latest, tox: py37-marshmallow3}
28-
- {name: '3.10-ma3', python: '3.10', os: ubuntu-latest, tox: py310-marshmallow3}
29-
- {name: '3.10-madev', python: '3.10', os: ubuntu-latest, tox: py310-marshmallowdev}
28+
- {name: '3.11-ma3', python: '3.11', os: ubuntu-latest, tox: py311-marshmallow3}
29+
- {name: '3.11-madev', python: '3.11', os: ubuntu-latest, tox: py311-marshmallowdev}
3030
steps:
3131
- uses: actions/checkout@v2
3232
- uses: actions/setup-python@v2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def read(fname):
7878
"Programming Language :: Python :: 3.8",
7979
"Programming Language :: Python :: 3.9",
8080
"Programming Language :: Python :: 3.10",
81+
"Programming Language :: Python :: 3.11",
8182
"Programming Language :: Python :: 3 :: Only",
8283
],
8384
test_suite="tests",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
lint
4-
py{37,38,39,310}-marshmallow3
4+
py{37,38,39,310,311}-marshmallow3
55
py310-marshmallowdev
66
docs
77

0 commit comments

Comments
 (0)