You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure these boxes are checked before submitting your issue - thank you!
I have checked the superset logs for python stacktraces and included it here as text if any
I have reproduced the issue with at least the latest released version of superset
I have checked the issue tracker for the same issue and I haven't found one similar
Superset version
0.22.1
Expected results
Actual results
When I use pip to install superset, it failed with error message "futures requires Python '>=2.6, <3' but the running Python is 3.5.4", which means futures package required. But futures is prepared for Python2, and it cannot be installed in Python3.
It seems to be an old issue with flower==0.9.1 which has already been resolved. So maybe we should change into flower==0.9.2 or flower without pinned version in setup.py.
Steps to reproduce
pip install superset==0.22.1
which fails as following
futures requires Python '>=2.6, <3' but the running Python is 3.5.4
The text was updated successfully, but these errors were encountered:
Make sure these boxes are checked before submitting your issue - thank you!
Superset version
0.22.1
Expected results
Actual results
When I use pip to install superset, it failed with error message "futures requires Python '>=2.6, <3' but the running Python is 3.5.4", which means
futures
package required. Butfutures
is prepared for Python2, and it cannot be installed in Python3.It seems to be an old issue with
flower==0.9.1
which has already been resolved. So maybe we should change intoflower==0.9.2
orflower
without pinned version insetup.py
.Steps to reproduce
pip install superset==0.22.1
which fails as following
The text was updated successfully, but these errors were encountered: