From 335ceae7be86e041d044b332662e59f70cf103bf Mon Sep 17 00:00:00 2001 From: Finbarr Timbers Date: Sat, 21 Jan 2017 21:50:49 -0700 Subject: [PATCH] Update the required version of Flask-WTF. See: https://github.com/stormpath/stormpath-flask/issues/92. Flask-WTF 0.14.0 introduces changes that break stormpath-flask. Restricting the range of packages supported fixes this until a more permanent fix can be done. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b841ffd..5a5abd8 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def run(self): install_requires = [ 'Flask>=0.9.0', 'Flask-Login==0.3.2', - 'Flask-WTF>=0.9.5', + 'Flask-WTF>=0.9.5,<=0.13.1', 'facebook-sdk==2.0.0', 'oauth2client==1.5.2', 'stormpath==2.4.4',