Skip to content

Commit

Permalink
fix(ingest/snowflake): loosen snowflake connector version requirement
Browse files Browse the repository at this point in the history
Related to #6204.
  • Loading branch information
hsheth2 committed Nov 12, 2022
1 parent 3e907ab commit 76bc91f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,9 @@ def get_long_description():
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",
}
Expand Down

0 comments on commit 76bc91f

Please sign in to comment.