Skip to content

Commit

Permalink
Bump google dependency upper bounds, remove six (#57)
Browse files Browse the repository at this point in the history
* Bump google deps, rm six

* Update changelog
  • Loading branch information
jtcohen6 authored Nov 8, 2021
1 parent bc31bae commit b2bf0f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ N/A

### Under the hood
- Capping `google-api-core` to version `1.31.3` due to `protobuf` dependency conflict ([#53](https://github.com/dbt-labs/dbt-bigquery/pull/53))
- Bump `google-cloud-core` and `google-api-core` upper bounds to `<3`, thereby removing `<1.31.3` limit on the latter. Remove explicit dependency on `six` ([#57](https://github.com/dbt-labs/dbt-bigquery/pull/57))

### Contributors
- [@imartynetz](https://github.com/imartynetz) ([#48](https://github.com/dbt-labs/dbt-bigquery/pull/48))
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,10 @@ def _get_dbt_core_version():
install_requires=[
'dbt-core~={}'.format(dbt_core_version),
'protobuf>=3.13.0,<4',
'google-cloud-core>=1.3.0,<2',
'google-cloud-core>=1.3.0,<3',
'google-cloud-bigquery>=1.25.0,<3',
'google-api-core>=1.16.0,<1.31.3',
'google-api-core>=1.16.0,<3',
'googleapis-common-protos>=1.6.0,<2',
'six>=1.14.0',
],
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit b2bf0f9

Please sign in to comment.