fix(build): contraint packages for bentoml >1.1.10

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
Aaron
2023-11-20 17:30:21 -05:00
parent 1f2cdc8021
commit 00e2666e48

View File

@@ -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: