From 5e3226277886bf3e3e905639d4b0ad88a940a15d 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 (cherry picked from commit 2c5200affdae7995a12e8680f0218fb5aa080bc8) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2dfa26fe7af18..cc55836bd3864 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-cache', 'flask-compress',