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

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c21c55b882469f29e74ebe04f8045e86696a99d7
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Mar 15 21:28:06 2021 +0100

    Pin SQLAlchemy to <1.4 due to breakage of sqlalchemy-utils (#14812)
    
    The 1.4 releae of SQLAlchemy breaks sqlalchemy-utils.
    
    This change pins it to < 1.4
    
    Fixes #14811
---
 setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 84f4b4e..83da0ff 100644
--- a/setup.py
+++ b/setup.py
@@ -645,7 +645,8 @@ INSTALL_REQUIREMENTS = [
     'requests>=2.20.0, <2.23.0;python_version<"3.0"',  # Required to keep 
snowflake happy
     'requests>=2.20.0, <2.24.0;python_version>="3.0"',  # Required to keep 
snowflake happy
     'setproctitle>=1.1.8, <2',
-    'sqlalchemy~=1.3',
+    # SQLAlchemy 1.4 breaks sqlalchemy-utils 
https://github.com/kvesteri/sqlalchemy-utils/issues/505
+    'sqlalchemy>=1.3.18, <1.4',
     'sqlalchemy_jsonfield==0.8.0;python_version<"3.5"',
     'sqlalchemy_jsonfield~=0.9;python_version>="3.5"',
     'tabulate>=0.7.5, <0.9',

Reply via email to