dpgaspar edited a comment on issue #13631: URL: https://github.com/apache/superset/issues/13631#issuecomment-808160768
@jonasjancarik I was able to reproduce, seems that flask-sqlalchemy has launched 2.5.0 that supports sqlalchemy > 1.4.0 already. I'll remove the pinned dependency on Flask-AppBuilder. Note that removing Flask-AppBuilder SQLAlchemy pin under 1.4.0 will not totally resolve the issue, since `sqlalchemy-utils` is still incompatible with SQLAlchemy 1.4.0 and no new release is out yet. So for all apache-superset versions equal and under 1.0.1, you need to `pip install "SQLAlchemy<1.4.0"`. Better yet: >> pinning all your dependencies avoids this kind of problems, you can use superset's repo pinned dependencies: https://github.com/apache/superset/blob/master/requirements/base.txt New apache-superset 1.1.0 pins SQLAlchemy bellow 1.4.0 and solves this issue -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
