We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 33c13b9 + 42bff39 commit 7001772Copy full SHA for 7001772
setup.py
@@ -7,7 +7,8 @@
7
REQUIRES = [
8
'six>=1.9.0',
9
'flask>=0.10.1',
10
- 'marshmallow>=2.0.0',
+ 'marshmallow>=2.0.0,<3.0.0rc6; python_version<"3"',
11
+ 'marshmallow>=2.0.0; python_version>="3"',
12
'webargs>=0.18.0',
13
'apispec>=1.0.0',
14
]
tests/test_views.py
@@ -42,7 +42,7 @@ class ArgSchema(Schema):
42
name = fields.Str()
43
44
@post_load
45
- def make_object(self, data):
+ def make_object(self, data, **kwargs):
46
return User(**data)
47
48
@app.route('/', methods=('POST', ))
0 commit comments