Skip to content

Commit

Permalink
update snowflake deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Wigley committed Mar 26, 2021
1 parent d52374a commit 9f00292
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
Empty file added core/dbt/adapters/__init__.py
Empty file.
6 changes: 3 additions & 3 deletions core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ def read(fname):
'mashumaro==2.0',
'typing-extensions>=3.7.4,<3.8',
# the following are all to match snowflake-connector-python
'requests>=2.18.0,<2.24.0',
'idna<2.10',
'cffi>=1.9,<1.15',
'requests<3.0.0',
'idna>=2.5,<3',
'cffi>=1.9,<2.0.0',
],
zip_safe=False,
classifiers=[
Expand Down
4 changes: 2 additions & 2 deletions plugins/redshift/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
install_requires=[
'dbt-core=={}'.format(package_version),
'dbt-postgres=={}'.format(package_version),
# match snowflake-connector-python supported ranges
'boto3>=1.4.4,<1.16',
# the following are all to match snowflake-connector-python
'boto3>=1.4.4,<2.0.0',
],
zip_safe=False,
classifiers=[
Expand Down
7 changes: 2 additions & 5 deletions plugins/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,8 @@
},
install_requires=[
'dbt-core=={}'.format(package_version),
'snowflake-connector-python[secure-local-storage]==2.4.1',
'azure-common<2.0.0',
'azure-storage-blob>=12.0.0,<13.0.0',
'urllib3>=1.20,<1.26.0',
# this seems sufficiently broad
'snowflake-connector-python[secure-local-storage]==2.4',
'requests<3.0.0',
'cryptography>=3.2,<4',
],
zip_safe=False,
Expand Down

0 comments on commit 9f00292

Please sign in to comment.