Skip to content

Commit

Permalink
put an upper bound on bigquery, add six
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Dec 13, 2019
1 parent a702f58 commit a78b4fd
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 a78b4fd

Please sign in to comment.