From 756991714969fed181dd4c1172b19a29fb2db683 Mon Sep 17 00:00:00 2001 From: yangxuan Date: Tue, 19 Nov 2024 19:39:50 +0800 Subject: [PATCH] fix: Add upper limit for grpcio to 1.67.1 See also: #2358 Signed-off-by: yangxuan --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1357ef11e..8c3aaa2ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ readme = "README.md" dependencies=[ "setuptools>69", "setuptools<70.1;python_version<='3.8'", - "grpcio>=1.49.1", + "grpcio>=1.49.1,<=1.67.1", #issue https://github.com/milvus-io/pymilvus/issues/2358 "protobuf>=3.20.0", "python-dotenv>=1.0.1, <2.0.0", "ujson>=2.0.0",