From 6fda9255493684bed3820f2c81dca5599872b8b6 Mon Sep 17 00:00:00 2001 From: Ivan Cheung Date: Thu, 6 May 2021 00:13:56 -0400 Subject: [PATCH] fix: Bump google-cloud-storage min version to 1.32.0 (#371) * Bump google-cloud-storage min version to 1.32.0 This PR (https://github.com/googleapis/python-aiplatform/pull/357) introduced a mock that uses google.cloud.storage.blob.Blob.download_as_bytes. This method was introduced in 1.32.0. * Bumped version in constraints-3.6.txt --- setup.py | 2 +- testing/constraints-3.6.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b89d2a6417..673585e0bb 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ install_requires=( "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.1", - "google-cloud-storage >= 1.26.0, < 2.0.0dev", + "google-cloud-storage >= 1.32.0, < 2.0.0dev", "google-cloud-bigquery >= 1.15.0, < 3.0.0dev", ), python_requires=">=3.6", diff --git a/testing/constraints-3.6.txt b/testing/constraints-3.6.txt index c8bff855a0..c169373dcf 100644 --- a/testing/constraints-3.6.txt +++ b/testing/constraints-3.6.txt @@ -9,4 +9,4 @@ google-api-core==1.22.2 libcst==0.2.5 proto-plus==1.10.1 mock==4.0.2 -google-cloud-storage==1.26.0 \ No newline at end of file +google-cloud-storage==1.32.0 \ No newline at end of file