From 9fe1549206e61ada44798d59259b66fbf0201c00 Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Sun, 19 Nov 2023 23:08:40 -0500 Subject: [PATCH] chore: update lower bound version of bentoml to avoid breakage Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- openllm-python/pyproject.toml | 4 ++-- tools/dependencies.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openllm-python/pyproject.toml b/openllm-python/pyproject.toml index 70741e547..55f0e9cb6 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 dd8ab3a67..dbf24c848 100755 --- a/tools/dependencies.py +++ b/tools/dependencies.py @@ -141,7 +141,7 @@ def from_tuple(cls, *decls: t.Any) -> 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'