jonasrla commented on issue #14811: URL: https://github.com/apache/airflow/issues/14811#issuecomment-801994616
Hello, First of all, to see how things are working out to fix this issue checkout #https://github.com/kvesteri/sqlalchemy-utils/issues/505 The reason we are facing this issue is because the 2.0.1 release limits the SQLAlchemy version to be `< 2` [setup.cfg#L133](https://github.com/apache/airflow/blob/2.0.1/setup.cfg#L133) The master already fixed it [setup.cfg#L134](https://github.com/apache/airflow/blob/master/setup.cfg#L134) So my suggestion to work around this issue is to force install `pip install SQLAlchemy==1.3.23` after installing airflow, so it overrides the newer SQLAlchemy version. -- 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]
