chore: bump up bentoml version to 1.1.11 (#883)

This commit is contained in:
Zhao Shenyang
2024-02-04 21:31:14 +08:00
committed by GitHub
parent 9d0e292076
commit 16d8caf2ee
4 changed files with 5 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"bentoml[io]>=1.1.10",
"bentoml[io]>=1.1.11,<1.2",
"transformers[torch,tokenizers]>=4.36.0",
"openllm-client>=0.4.42",
"openllm-core>=0.4.42",
@@ -113,7 +113,7 @@ full = [
]
ggml = ["ctransformers"]
gptq = ["auto-gptq[triton]>=0.4.2"]
grpc = ["bentoml[grpc]>=1.1.10"]
grpc = ["bentoml[grpc]>=1.1.11,<1.2"]
mpt = ["triton"]
openai = ["openai[datalib]>=1", "tiktoken"]
playground = ["jupyter", "notebook", "ipython", "jupytext", "nbformat"]

View File

@@ -38,7 +38,7 @@ def build_editable(path, package='openllm'):
def construct_python_options(llm, llm_fs, extra_dependencies=None, adapter_map=None):
from . import RefResolver
packages = ['scipy', 'bentoml[tracing]>=1.1.10,<1.2', f'openllm[vllm]>={RefResolver.from_strategy("release").version}'] # apparently bnb misses this one
packages = ['scipy', 'bentoml[tracing]>=1.1.11,<1.2', f'openllm[vllm]>={RefResolver.from_strategy("release").version}'] # apparently bnb misses this one
if adapter_map is not None:
packages += ['openllm[fine-tune]']
if extra_dependencies is not None: