jackyspy opened a new issue #4259: Installation failed in Python 3 with dependency error for futures URL: https://github.com/apache/incubator-superset/issues/4259 Make sure these boxes are checked before submitting your issue - thank you! - [x] I have checked the superset logs for python stacktraces and included it here as text if any - [x] I have reproduced the issue with at least the latest released version of superset - [x] 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](https://github.com/mher/flower/commit/57aa1b68856b5e3153356ae114b055dd394e8d6f) 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 ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
