Browse Source

Pin webargs version to < 5.0

webargs 5.0.0 makes a behavior change to its @use_args / @use_kwargs
decorators that makes it so that optional/missing arguments are no
longer filled: https://github.com/marshmallow-code/webargs/issues/342

This breaks how I'm currently doing some views with missing arguments
(such as views.topic.get_group_topics), so to be able to upgrade to 5.0
we will need to either update the views or the schemas.
merge-requests/55/head
Deimos 6 years ago
parent
commit
664c6f6790
  1. 2
      tildes/requirements-to-freeze.txt

2
tildes/requirements-to-freeze.txt

@ -35,7 +35,7 @@ SQLAlchemy-Utils
stripe stripe
testing.redis testing.redis
titlecase titlecase
webargs
webargs<5.0 # 5.0.0 breaks many views, will require significant updates
webtest webtest
wrapt wrapt
zope.sqlalchemy zope.sqlalchemy
Loading…
Cancel
Save