From 5f1ccac564bc1e5e90864a79bd0cd3914da622a9 Mon Sep 17 00:00:00 2001 From: leahwicz <60146280+leahwicz@users.noreply.github.com> Date: Wed, 3 Nov 2021 08:59:11 -0400 Subject: [PATCH] Change Bigquery google-api-core max version dependency (#4192) * Change Bigquery google-api-core max version dependency * Update CHANGELOG.md --- CHANGELOG.md | 1 + plugins/bigquery/setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6698fc1d6c0..53f3117017c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Increase performance of graph subset selection ([#4135](https://github.com/dbt-labs/dbt-core/issues/4135),[#4155](https://github.com/dbt-labs/dbt-core/pull/4155)) - Add downstream test edges for `build` task _only_. Restore previous graph construction, compilation performance, and node selection behavior (`test+`) for all other tasks ([#4135](https://github.com/dbt-labs/dbt-core/issues/4135), [#4143](https://github.com/dbt-labs/dbt-core/pull/4143)) - Don't require a strict/proper subset when adding testing edges to specialized graph for `build` ([#4158](https://github.com/dbt-labs/dbt-core/issues/4135), [#4158](https://github.com/dbt-labs/dbt-core/pull/4160)) +- Capping `google-api-core` to version `1.31.3` due to `protobuf` dependency conflict ([#4192](https://github.com/dbt-labs/dbt-core/pull/4192)) Contributors: - [@ljhopkins2](https://github.com/ljhopkins2) ([#4077](https://github.com/dbt-labs/dbt-core/pull/4077)) diff --git a/plugins/bigquery/setup.py b/plugins/bigquery/setup.py index dcc06999b2e..f8c680e226f 100644 --- a/plugins/bigquery/setup.py +++ b/plugins/bigquery/setup.py @@ -50,7 +50,7 @@ 'protobuf>=3.13.0,<4', 'google-cloud-core>=1.3.0,<2', 'google-cloud-bigquery>=1.25.0,<3', - 'google-api-core>=1.16.0,<2', + 'google-api-core>=1.16.0,<1.31.3', 'googleapis-common-protos>=1.6.0,<2', 'six>=1.14.0', ],