diff --git a/openllm-python/pyproject.toml b/openllm-python/pyproject.toml index 70741e54..55f0e9cb 100644 --- a/openllm-python/pyproject.toml +++ b/openllm-python/pyproject.toml @@ -38,7 +38,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "bentoml[io]>=1.1.9", + "bentoml[io]>=1.1.10", "transformers[torch,tokenizers]>=4.35.0", "openllm-client>=0.4.17", "openllm-core>=0.4.17", @@ -114,7 +114,7 @@ full = [ ] ggml = ["ctransformers"] gptq = ["auto-gptq[triton]>=0.4.2"] -grpc = ["bentoml[grpc]>=1.1.9"] +grpc = ["bentoml[grpc]>=1.1.10"] mpt = ["triton"] openai = ["openai[datalib]>=1", "tiktoken"] playground = ["jupyter", "notebook", "ipython", "jupytext", "nbformat"] diff --git a/tools/dependencies.py b/tools/dependencies.py index dd8ab3a6..dbf24c84 100755 --- a/tools/dependencies.py +++ b/tools/dependencies.py @@ -141,7 +141,7 @@ class Dependencies: return cls(*decls) -_LOWER_BENTOML_CONSTRAINT = '1.1.9' +_LOWER_BENTOML_CONSTRAINT = '1.1.10' _BENTOML_EXT = ['io'] _TRANSFORMERS_EXT = ['torch', 'tokenizers'] _TRANSFORMERS_CONSTRAINTS = '4.35.0'