From b110f472416ea33758397cb416336e042780ad22 Mon Sep 17 00:00:00 2001 From: Arno Eigenwillig Date: Mon, 3 Feb 2025 07:59:41 -0800 Subject: [PATCH] Avoid co-installing with google-vizier that breaks for protobuf 4. PiperOrigin-RevId: 722659455 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b1357748..ddcddcd5 100644 --- a/setup.py +++ b/setup.py @@ -170,7 +170,7 @@ def get_version(): ], namespace_packages=[], install_requires=[ - 'google-vizier>=0.0.13', + 'google-vizier>=0.0.13,!=0.1.23,!=0.1.24', # b/394062744 'ml-collections', 'networkx', 'pyarrow',