Skip to content

Commit dde560d

Browse files
vertex-sdk-botcopybara-github
authored andcommitted
feat: Add Ray 2.47 support to SDK Client Builder
PiperOrigin-RevId: 784254395
1 parent 2b0595c commit dde560d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/aiplatform/vertex_ray/client_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __init__(
4747
persistent_resource_id,
4848
" failed to start Head node properly.",
4949
)
50-
if ray.__version__ in ("2.42.0", "2.33.0"):
50+
if ray.__version__ in ("2.47.1", "2.42.0", "2.33.0"):
5151
super().__init__(
5252
dashboard_url=dashboard_uri,
5353
python_version=ray_client_context.python_version,
@@ -69,7 +69,7 @@ def __init__(
6969
else:
7070
raise ImportError(
7171
f"[Ray on Vertex AI]: Unsupported version {ray.__version__}."
72-
+ "Only 2.42.0, 2.33.0, and 2.9.3 are supported."
72+
+ "Only 2.47.1, 2.42.0, 2.33.0, and 2.9.3 are supported."
7373
)
7474
self.persistent_resource_id = persistent_resource_id
7575
self.vertex_sdk_version = str(VERTEX_SDK_VERSION)

0 commit comments

Comments
 (0)