From 36c75788ccee01a6d48defa37587b8083df25301 Mon Sep 17 00:00:00 2001 From: Slvr <30467496+SilverBzH@users.noreply.github.com> Date: Wed, 9 Oct 2024 13:37:51 -0700 Subject: [PATCH] workflow: fix grpc conflict (#29) --- python/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 0fcd7fc..bbd8aaf 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -7,8 +7,8 @@ classifiers = [ "License :: OSI Approved :: Apache Software License" ] dependencies = [ - "grpcio>=1.62.1", - "protobuf>=4.22.0" + "grpcio==1.62.1", + "protobuf==4.24.2" ] [project.urls] @@ -40,6 +40,6 @@ reportImportCycles = false reportPrivateUsage = false [build-system] -requires = ["flit_core==3.7.1", "grpcio-tools>=1.62.1"] +requires = ["flit_core==3.7.1", "grpcio-tools==1.62.1"] build-backend = "_build.backend" backend-path = ["."]