From 3f41e1ff4a6b90ce5a47bffeafb66bcff6157bb8 Mon Sep 17 00:00:00 2001 From: mayurinehate Date: Thu, 1 Dec 2022 13:53:16 +0530 Subject: [PATCH] fix(ingest): restrict snowflake-connector-python dependency --- metadata-ingestion/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index 991b8792b3ecd0..1a744a6fe328a6 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -178,6 +178,8 @@ def get_long_description(): # Eventually we should just require snowflake-sqlalchemy>=1.4.3, but I won't do that immediately # because it may break Airflow users that need SQLAlchemy 1.3.x. "SQLAlchemy<1.4.42", + # See https://github.com/snowflakedb/snowflake-connector-python/pull/1348 for why 2.8.2 is blocked + "snowflake-connector-python!=2.8.2", "pandas", "cryptography", "msal",