fix(ingest): snowflake - loosen snowflake connector version requirement (#6418)

Related to https://github.com/datahub-project/datahub/pull/6204.
This commit is contained in:
Harshal Sheth 2022-11-14 07:44:57 -05:00 committed by GitHub
parent e79b4e8c2b
commit fd518cdf58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,8 +168,9 @@ redshift_common = {
snowflake_common = {
# Snowflake plugin utilizes sql common
*sql_common,
# Required for all Snowflake sources
"snowflake-sqlalchemy<=1.2.4",
# Required for all Snowflake sources.
# See https://github.com/snowflakedb/snowflake-sqlalchemy/issues/234 for why 1.2.5 is blocked.
"snowflake-sqlalchemy>=1.2.4, !=1.2.5",
"cryptography",
"msal",
}