Skip to content

Commit

Permalink
pin snowflake-connector-python (#17979)
Browse files Browse the repository at this point in the history
3.5.0 includes drastic changes which seem to break things (at least
tests)

bk
  • Loading branch information
alangenfeld authored and benpankow committed Nov 14, 2023
1 parent f9b17f4 commit acf1239
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions python_modules/libraries/dagster-snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,19 @@ def get_version() -> str:
"Operating System :: OS Independent",
],
packages=find_packages(exclude=["dagster_snowflake_tests*"]),
install_requires=[f"dagster{pin}", "snowflake-connector-python>=2.1.0"],
install_requires=[
f"dagster{pin}",
"snowflake-connector-python>=2.1.0,<3.5.0",
],
extras_require={
"snowflake.sqlalchemy": [
"sqlalchemy!=1.4.42", # workaround for https://github.com/snowflakedb/snowflake-sqlalchemy/issues/350
"snowflake-sqlalchemy",
],
"pandas": ["pandas", "snowflake-connector-python[pandas]>=2.1.0"],
"pandas": [
"pandas",
"snowflake-connector-python[pandas]>=2.1.0,<3.5.0",
],
},
zip_safe=False,
)

0 comments on commit acf1239

Please sign in to comment.