Skip to content

Commit 4d2e2be

Browse files
committed
Restrict marshmallow versions based on Python version
see marshmallow-code/marshmallow#1120 close #148
1 parent 33c13b9 commit 4d2e2be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
REQUIRES = [
88
'six>=1.9.0',
99
'flask>=0.10.1',
10-
'marshmallow>=2.0.0',
10+
'marshmallow>=2.0.0,<3.0.0rc6; python_version<"3"',
11+
'marshmallow>=2.0.0; python_version>="3"',
1112
'webargs>=0.18.0',
1213
'apispec>=1.0.0',
1314
]

0 commit comments

Comments
 (0)