From 3502e7e5878e62dde2f20aa9e222e0d0b06b27a0 Mon Sep 17 00:00:00 2001 From: A Vertex SDK engineer Date: Mon, 30 Mar 2026 21:37:55 -0700 Subject: [PATCH] chore: Bump fallback GCS version to 3.0.0 in tests, in accordance with the recent GCS version update PiperOrigin-RevId: 892087422 --- google/cloud/aiplatform/utils/gcs_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/cloud/aiplatform/utils/gcs_utils.py b/google/cloud/aiplatform/utils/gcs_utils.py index 69f57f311f..ac7812c9b3 100644 --- a/google/cloud/aiplatform/utils/gcs_utils.py +++ b/google/cloud/aiplatform/utils/gcs_utils.py @@ -45,7 +45,7 @@ _GCS_VERSION = Version(get_version("google-cloud-storage")) except Exception: # Fallback if version detection fails (should not happen in normal use) - _GCS_VERSION = Version("2.0.0") + _GCS_VERSION = Version("3.0.0") _USE_FROM_URI = _GCS_VERSION >= Version("3.0.0")