From 666ef92a3e1ecd856f04a1f4854687ed5f43cae1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 6 Mar 2020 18:06:32 +0000 Subject: [PATCH 1/7] chore(deps): update dependency google-cloud-bigquery to v1.24.0 --- appengine/standard_python37/bigquery/requirements.txt | 2 +- bigquery/bqml/requirements.txt | 2 +- bigquery/cloud-client/requirements.txt | 2 +- bigquery/pandas-gbq-migration/requirements.txt | 2 +- bigquery_storage/to_dataframe/requirements.txt | 2 +- dlp/requirements.txt | 2 +- notebooks/requirements.txt | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/appengine/standard_python37/bigquery/requirements.txt b/appengine/standard_python37/bigquery/requirements.txt index a38c284f482..56cead889be 100644 --- a/appengine/standard_python37/bigquery/requirements.txt +++ b/appengine/standard_python37/bigquery/requirements.txt @@ -1,2 +1,2 @@ -google-cloud-bigquery==1.23.1 +google-cloud-bigquery==1.24.0 Flask==1.1.1 diff --git a/bigquery/bqml/requirements.txt b/bigquery/bqml/requirements.txt index dee3fe25961..f22d481c8f1 100644 --- a/bigquery/bqml/requirements.txt +++ b/bigquery/bqml/requirements.txt @@ -1,4 +1,4 @@ pandas==0.24.2 -google-cloud-bigquery==1.23.1 +google-cloud-bigquery==1.24.0 flaky==3.6.1 mock==3.0.5 diff --git a/bigquery/cloud-client/requirements.txt b/bigquery/cloud-client/requirements.txt index 70d64447256..222b41d0142 100644 --- a/bigquery/cloud-client/requirements.txt +++ b/bigquery/cloud-client/requirements.txt @@ -1,4 +1,4 @@ -google-cloud-bigquery[pandas]==1.20.0 +google-cloud-bigquery[pandas]==1.24.0 google-auth-oauthlib==0.4.0 ipython==7.8.0 matplotlib==3.1.1 diff --git a/bigquery/pandas-gbq-migration/requirements.txt b/bigquery/pandas-gbq-migration/requirements.txt index 6ba0ec2f263..9beef8f46e4 100644 --- a/bigquery/pandas-gbq-migration/requirements.txt +++ b/bigquery/pandas-gbq-migration/requirements.txt @@ -1,4 +1,4 @@ -google-cloud-bigquery==1.23.1 +google-cloud-bigquery==1.24.0 google-cloud-bigquery-storage==0.7.0 pandas==0.25.3 pandas-gbq==0.13.0 diff --git a/bigquery_storage/to_dataframe/requirements.txt b/bigquery_storage/to_dataframe/requirements.txt index 16905131d59..2afae5e8cd1 100644 --- a/bigquery_storage/to_dataframe/requirements.txt +++ b/bigquery_storage/to_dataframe/requirements.txt @@ -1,6 +1,6 @@ google-auth==1.11.2 google-cloud-bigquery-storage==0.7.0 -google-cloud-bigquery==1.23.1 +google-cloud-bigquery==1.24.0 pyarrow==0.15.1 ipython==7.10.2 pandas==0.25.3 diff --git a/dlp/requirements.txt b/dlp/requirements.txt index dccabd5de6b..2bc82d90604 100644 --- a/dlp/requirements.txt +++ b/dlp/requirements.txt @@ -2,4 +2,4 @@ google-cloud-dlp==0.12.1 google-cloud-storage==1.19.1 google-cloud-pubsub==1.0.0 google-cloud-datastore==1.9.0 -google-cloud-bigquery==1.20.0 +google-cloud-bigquery==1.24.0 diff --git a/notebooks/requirements.txt b/notebooks/requirements.txt index ef662745863..855d4f28733 100644 --- a/notebooks/requirements.txt +++ b/notebooks/requirements.txt @@ -1,3 +1,3 @@ google-cloud-storage==1.23.0 -google-cloud-bigquery[pandas,pyarrow]==1.23.1 +google-cloud-bigquery[pandas,pyarrow]==1.24.0 matplotlib==3.1.2 From 14e2aff5e3ebb12cb2478400de5669d5ae91f13f Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Fri, 6 Mar 2020 11:43:57 -0800 Subject: [PATCH 2/7] chore(deps): update ipython version --- bigquery/cloud-client/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bigquery/cloud-client/requirements.txt b/bigquery/cloud-client/requirements.txt index 222b41d0142..f316f7daef8 100644 --- a/bigquery/cloud-client/requirements.txt +++ b/bigquery/cloud-client/requirements.txt @@ -1,5 +1,6 @@ google-cloud-bigquery[pandas]==1.24.0 google-auth-oauthlib==0.4.0 -ipython==7.8.0 +ipython==7.10.2; python_version > '3.0' +ipython==5.9.0; python_version < '3.0' matplotlib==3.1.1 pytz==2019.2 From c13c3514cc7e07ee6624fc3ee8e2c194e1e44dc2 Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Fri, 6 Mar 2020 16:37:40 -0800 Subject: [PATCH 3/7] fix: fix requirements order --- bigquery_storage/to_dataframe/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery_storage/to_dataframe/requirements.txt b/bigquery_storage/to_dataframe/requirements.txt index d7cdf86636a..27c62e19f17 100644 --- a/bigquery_storage/to_dataframe/requirements.txt +++ b/bigquery_storage/to_dataframe/requirements.txt @@ -1,6 +1,6 @@ google-auth==1.11.2 -google-cloud-bigquery==1.24.0 google-cloud-bigquery-storage==0.8.0 +google-cloud-bigquery==1.24.0 pyarrow==0.15.1 ipython==7.10.2; python_version > '3.0' ipython==5.9.0; python_version < '3.0' From a7cc2febd76c413f0a93eb1339ec648ee9d9c420 Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Mon, 16 Mar 2020 14:12:49 -0700 Subject: [PATCH 4/7] explicitly add grpc to resolve errors --- bigquery/cloud-client/requirements.txt | 3 ++- bigquery/pandas-gbq-migration/requirements.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bigquery/cloud-client/requirements.txt b/bigquery/cloud-client/requirements.txt index f316f7daef8..53cd53c0430 100644 --- a/bigquery/cloud-client/requirements.txt +++ b/bigquery/cloud-client/requirements.txt @@ -2,5 +2,6 @@ google-cloud-bigquery[pandas]==1.24.0 google-auth-oauthlib==0.4.0 ipython==7.10.2; python_version > '3.0' ipython==5.9.0; python_version < '3.0' -matplotlib==3.1.1 +matplotlib==3.1.1; python_version > '3.0' +matplotlib==2.2.5; python_version < '3.0' pytz==2019.2 diff --git a/bigquery/pandas-gbq-migration/requirements.txt b/bigquery/pandas-gbq-migration/requirements.txt index 63716deaac4..80849dd2f51 100644 --- a/bigquery/pandas-gbq-migration/requirements.txt +++ b/bigquery/pandas-gbq-migration/requirements.txt @@ -4,3 +4,4 @@ pandas==0.25.3; python_version > '3.0' pandas==0.24.2; python_version < '3.0' pandas-gbq==0.13.1 pyarrow==0.15.1 +grpcio==1.27.2 From 6f5e620e2eafc5eccf8bfcbe76d0f095c0c940c3 Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Mon, 16 Mar 2020 14:31:41 -0700 Subject: [PATCH 5/7] adjust arguments --- bigquery/cloud-client/authenticate_service_account_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/cloud-client/authenticate_service_account_test.py b/bigquery/cloud-client/authenticate_service_account_test.py index 8c436ec206f..6125440a075 100644 --- a/bigquery/cloud-client/authenticate_service_account_test.py +++ b/bigquery/cloud-client/authenticate_service_account_test.py @@ -26,8 +26,8 @@ def mock_credentials(*args, **kwargs): def test_main(monkeypatch): monkeypatch.setattr( - 'google.oauth2.service_account.Credentials.from_service_account_file', mock_credentials, + 'google.oauth2.service_account.Credentials.from_service_account_file', ) client = authenticate_service_account.main() assert client is not None From 1fb3e29e826aab0de5fc4719c854678c6b27a396 Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Mon, 16 Mar 2020 14:50:50 -0700 Subject: [PATCH 6/7] undo mistake --- bigquery/cloud-client/authenticate_service_account_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/cloud-client/authenticate_service_account_test.py b/bigquery/cloud-client/authenticate_service_account_test.py index 6125440a075..8c436ec206f 100644 --- a/bigquery/cloud-client/authenticate_service_account_test.py +++ b/bigquery/cloud-client/authenticate_service_account_test.py @@ -26,8 +26,8 @@ def mock_credentials(*args, **kwargs): def test_main(monkeypatch): monkeypatch.setattr( - mock_credentials, 'google.oauth2.service_account.Credentials.from_service_account_file', + mock_credentials, ) client = authenticate_service_account.main() assert client is not None From b715a699ad717fd77120786838d9fab0862422f0 Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Mon, 16 Mar 2020 17:35:31 -0700 Subject: [PATCH 7/7] bump auth version --- bigquery/cloud-client/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/cloud-client/requirements.txt b/bigquery/cloud-client/requirements.txt index 53cd53c0430..52f1fdcb292 100644 --- a/bigquery/cloud-client/requirements.txt +++ b/bigquery/cloud-client/requirements.txt @@ -1,5 +1,5 @@ google-cloud-bigquery[pandas]==1.24.0 -google-auth-oauthlib==0.4.0 +google-auth-oauthlib==0.4.1 ipython==7.10.2; python_version > '3.0' ipython==5.9.0; python_version < '3.0' matplotlib==3.1.1; python_version > '3.0'