Skip to content

Commit

Permalink
rev the bigquery minimum versions to a big number
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Mar 26, 2020
1 parent 923f282 commit a761774
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## dbt 0.16.1 (Relase date TBD)

### Under the hood
- Pin google libraries to higher minimum values, add more dependencies as explicit ([#2233](https:/fishtown-analytics/dbt/issues/2233), [#2249](https:/fishtown-analytics/dbt/pull/2249))


## dbt 0.16.0 (March 23, 2020)

## dbt 0.16.0rc4 (March 20, 2020)

### Fixes
Expand Down
11 changes: 5 additions & 6 deletions plugins/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@
},
install_requires=[
'dbt-core=={}'.format(package_version),
'google-cloud-core>=1,<=1.3.0',
'google-cloud-bigquery>=1.22.0,<1.25.0',
# hidden secret dependency: bq 1.23.0 requires this but only documents
# 1.10.0 through its dependency chain.
# see https:/googleapis/google-cloud-python/issues/9965
'six>=1.13.0',
'google-cloud-core>=1.3.0,<1.4',
'google-cloud-bigquery>=1.24.0,<1.25.0',
'google-api-core>=1.16.0,<1.17.0',
'googleapis-common-protos>=1.6.0,<1.7.0',
'six>=1.14.0',
],
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit a761774

Please sign in to comment.