From 00e2666e48c830d0478f15f8c36604aa4987b8cb Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Mon, 20 Nov 2023 17:30:21 -0500 Subject: [PATCH] fix(build): contraint packages for bentoml >1.1.10 Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- openllm-python/src/openllm/bundle/_package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openllm-python/src/openllm/bundle/_package.py b/openllm-python/src/openllm/bundle/_package.py index 6405b3b97..98fc2ced6 100644 --- a/openllm-python/src/openllm/bundle/_package.py +++ b/openllm-python/src/openllm/bundle/_package.py @@ -54,7 +54,7 @@ def build_editable(path, package='openllm'): def construct_python_options(llm, llm_fs, extra_dependencies=None, adapter_map=None): - packages = ['scipy', 'bentoml[tracing]==1.1.9'] # apparently bnb misses this one + packages = ['scipy', 'bentoml[tracing]>=1.1.10'] # apparently bnb misses this one if adapter_map is not None: packages += ['openllm[fine-tune]'] if extra_dependencies is not None: