Skip to content

Commit

Permalink
Merge pull request #252 from sirosen/support-py311
Browse files Browse the repository at this point in the history
Add py311 to tox and classifiers
  • Loading branch information
sirosen authored Feb 6, 2023
2 parents 9abd4b3 + a6dcb69 commit ec410e3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Changelog
*******************

* Only support Python>=3.6, marshmallow>=3.0.0, and marshmallow-sqlalchemy>=0.24.0.
* Add support for python3.11

0.14.0 (2020-09-27)
*******************
Expand Down
13 changes: 7 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ jobs:
toxenvs:
- lint

- py37-marshmallow3
- py38-marshmallow3
- py39-marshmallow3
- py310-marshmallow3
- py37
- py38
- py39
- py310
- py311

- py39-lowest
- py39-marshmallowdev
- py37-lowest
- py311-marshmallowdev

- docs
os: linux
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ def read(fname):
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
test_suite="tests",
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
[tox]
envlist=
lint
py{37,38,39,310}-marshmallow3
py39-lowest
py39-marshmallowdev
py{37,38,39,310,311}
py37-lowest
py311-marshmallowdev
docs

[testenv]
extras = tests
deps =
marshmallow3: marshmallow>=3.0.0,<4.0.0
marshmallowdev: https://github.com/marshmallow-code/marshmallow/archive/dev.tar.gz
lowest: marshmallow==3.0.0
lowest: marshmallow-sqlalchemy==0.24.0
Expand Down

0 comments on commit ec410e3

Please # to comment.