Skip to content

Commit

Permalink
Merge pull request #3148 from fishtown-analytics/dependabot/pip/plugi…
Browse files Browse the repository at this point in the history
…ns/snowflake/snowflake-connector-python-secure-local-storage--2.4.1

Bump snowflake-connector-python[secure-local-storage] from 2.3.6 to 2.4.1 in /plugins/snowflake
  • Loading branch information
Kyle Wigley authored Mar 29, 2021
2 parents 440a5e4 + f36c72e commit 0335960
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
### Under the hood
- Add dependabot configuration for alerting maintainers about keeping dependencies up to date and secure. ([#3061](https:/fishtown-analytics/dbt/issues/3061), [#3062](https:/fishtown-analytics/dbt/pull/3062))
- Update script to collect and write json schema for dbt artifacts ([#2870](https:/fishtown-analytics/dbt/issues/2870), [#3065](https:/fishtown-analytics/dbt/pull/3065))
- Bump snowflake-connector-python and releated dependencies, support Python 3.9 ([#2985](https:/fishtown-analytics/dbt/issues/2985), [#3148](https:/fishtown-analytics/dbt/pull/3148))

Contributors:
- [@yu-iskw](https:/yu-iskw) ([#2928](https:/fishtown-analytics/dbt/pull/2928))
Expand Down
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
8 changes: 3 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.3.6',
'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.1',
'requests<3.0.0',
'cryptography>=3.2,<4',
],
zip_safe=False,
Expand All @@ -67,6 +64,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires=">=3.6.2",
)
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires=">=3.6.2",
)

0 comments on commit 0335960

Please sign in to comment.