From 4a238ba9942ae3313b19be27b63c644fdf49a7b7 Mon Sep 17 00:00:00 2001 From: Xuchen Pan <32844285+pan-x-c@users.noreply.github.com> Date: Tue, 23 Jan 2024 19:25:00 +0800 Subject: [PATCH] [Hot fix]Set version limits for requirements (#19) --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a1b79c76c..7ae6b4d73 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,12 @@ NAME = "agentscope" URL = "https://github.com/alibaba/AgentScope" -rpc_requires = ["grpcio", "grpcio-tools", "expiringdict"] +rpc_requires = [ + "grpcio==1.60.0", + "grpcio-tools==1.60.0", + "protobuf==4.25.0", + "expiringdict", +] service_requires = ["docker", "pymongo", "pymysql"] @@ -37,7 +42,7 @@ "tiktoken", "Pillow", "requests", - "openai", + "openai>=1.3.0", "numpy", ]