You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/04/23 15:16:31 UTC

[incubator-superset] branch master updated: Fix 'pip install .' (#4856)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 590e346  Fix 'pip install .' (#4856)
590e346 is described below

commit 590e3462d68231512ce2713eaff20bd9646d91cc
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Mon Apr 23 08:16:22 2018 -0700

    Fix 'pip install .' (#4856)
    
    * Fix 'pip install .'
    
    Fix error :
    > flask-appbuilder 1.10.0 has requirement Flask-SQLAlchemy==2.1,
    > but you'll have flask-sqlalchemy 2.3.2 which is incompatible.
    > botocore 1.10.5 has requirement python-dateutil<2.7.0,>=2.1, but you'll
    > have python-dateutil 2.7.2 which is incompatible.
    
    * remove flask-sqlalchemy==2.1 from reqs.txt
---
 requirements.txt | 1 -
 setup.py         | 1 -
 2 files changed, 2 deletions(-)

diff --git a/requirements.txt b/requirements.txt
index fb2fcd8..ea4f830 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -9,7 +9,6 @@ flask-cache==0.13.1
 flask-compress==1.4.0
 flask-migrate==2.1.1
 flask-script==2.0.6
-flask-sqlalchemy==2.1
 flask-testing==0.7.1
 flask-wtf==0.14.2
 flower==0.9.2
diff --git a/setup.py b/setup.py
index 2445703..2dfa26f 100644
--- a/setup.py
+++ b/setup.py
@@ -61,7 +61,6 @@ setup(
         'flask-compress',
         'flask-migrate',
         'flask-script',
-        'flask-sqlalchemy',
         'flask-testing',
         'flask-wtf',
         'flower',  # deprecated

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.