From d3fda0afc17c8eeeeee124b6fa41d046f05520c7 Mon Sep 17 00:00:00 2001 From: pyalex Date: Thu, 24 Mar 2022 15:01:14 -0700 Subject: [PATCH] fix python setup.py build_go_lib fails Signed-off-by: pyalex --- sdk/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 1edd74859e..569f8c3904 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -324,7 +324,7 @@ def run(self): self._generate_go_protos(f"feast/{sub_folder}/*.proto") -class BuildGoEmbeddedCommand(build_py): +class BuildGoEmbeddedCommand(Command): description = "Builds Go embedded library" user_options = []