Skip to content

Commit

Permalink
Merge pull request #2007 from fishtown-analytics/fix/bigquery-upper-b…
Browse files Browse the repository at this point in the history
…ounds

put an upper bound on bigquery
  • Loading branch information
beckjake committed Dec 13, 2019
2 parents fea06c6 + a78b4fd commit 0fe5fb6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugins/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@
},
install_requires=[
'dbt-core=={}'.format(package_version),
'google-cloud-bigquery>=1.15.0,<2',
'google-cloud-core>=1,<=1.1.0',
'google-cloud-bigquery>=1.15.0,<1.24.0',
# hidden secret dependency: bq requires this but only documents 1.10.0
# through its dependency chain.
# see https://github.com/googleapis/google-cloud-python/issues/9965
'six>=1.13.0',
],
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 0fe5fb6

Please sign in to comment.