From 4d519c59dbe2715323e5d1e6a53a8f34f8330864 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Sun, 13 May 2018 11:16:09 -0700 Subject: [PATCH] [deps] force flask<=1.0.0 (#4959) flask 1.0 came out and has backwards incompatible changes. People are reporting that fresh install doesn't work anymore. fixes https://github.com/apache/incubator-superset/issues/4953 We should ship a 0.25.1 with this in --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b614e6576303d..204271e5b5f20 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def get_git_sha(): 'celery', 'colorama', 'cryptography', - 'flask', + 'flask<=1.0.0', 'flask-appbuilder', 'flask-caching', 'flask-compress',