From 029dcb7c81ab7c30095f77b0f251e2f430781e54 Mon Sep 17 00:00:00 2001 From: A Vertex SDK engineer Date: Fri, 22 May 2026 22:28:11 -0700 Subject: [PATCH] feat: migrate to Bazel build system and package framework This change performs the transition of the VecBench vector search benchmarking framework to a native Bazel-based build and packaging system. Key Accomplishments: - Defined Bazel build targets for the core library and CLI. - Packaged the application as a container image. - Updated dependencies and visibility configurations. - Refactored optional database and metrics imports to use dynamic loading. PiperOrigin-RevId: 920023760 --- google/cloud/aiplatform/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/google/cloud/aiplatform/__init__.py b/google/cloud/aiplatform/__init__.py index 7f727bc8cd..b14f5286e4 100644 --- a/google/cloud/aiplatform/__init__.py +++ b/google/cloud/aiplatform/__init__.py @@ -16,6 +16,9 @@ # +# Trigger Copybara migration for visibility update in BUILD file. + + from google.cloud.aiplatform import version as aiplatform_version __version__ = aiplatform_version.__version__