From d1b62ef2f2e7027a0cf676368e2378419cf742c9 Mon Sep 17 00:00:00 2001 From: Guancheng Fu <110874468+gc-fu@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:59:24 +0800 Subject: [PATCH] [bigdl-llm] Remove serving-dep from all_requires (#8980) * Remove serving-dep from all_requires * pin fastchat version --- python/llm/setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/llm/setup.py b/python/llm/setup.py index 99957a00..292996c2 100644 --- a/python/llm/setup.py +++ b/python/llm/setup.py @@ -53,7 +53,7 @@ CONVERT_DEP = ['numpy >= 1.22', 'torch', 'transformers == 4.31.0', 'sentencepiece', # TODO: Support accelerate 0.22.0 'accelerate == 0.21.0', 'tabulate'] -SERVING_DEP = ['fschat[model_worker, webui] >= 0.2.24', 'protobuf'] +SERVING_DEP = ['fschat[model_worker, webui] == 0.2.28', 'protobuf'] windows_binarys = [ "llama.dll", "gptneox.dll", @@ -254,7 +254,6 @@ def setup_package(): all_requires = ['py-cpuinfo', 'protobuf'] all_requires += CONVERT_DEP - all_requires += SERVING_DEP # install with -f https://developer.intel.com/ipex-whl-stable-xpu xpu_requires = copy.deepcopy(all_requires)