From fd0441396bd991109d4ad1945c42338e2cc018db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 14:50:41 +0000 Subject: [PATCH] chore(deps-dev): update redis requirement from >=5.0 to >=8.0.0 Updates the requirements on [redis](https://github.com/redis/redis-py) to permit the latest version. - [Release notes](https://github.com/redis/redis-py/releases) - [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES) - [Commits](https://github.com/redis/redis-py/compare/v5.0.0...v8.0.0) --- updated-dependencies: - dependency-name: redis dependency-version: 8.0.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b0caf64..f034e69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ dependencies = [ # Document Q&A (llmstack ask) ask = ["numpy>=1.24", "pymupdf>=1.27.2.3", "python-docx>=1.2.0"] # API gateway server -gateway = ["fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=5.0", "httpx[http2]>=0.27"] +gateway = ["fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=8.0.0", "httpx[http2]>=0.27"] # Fine-tuning pipeline (llmstack finetune) finetune = [ "transformers>=4.45", @@ -57,7 +57,7 @@ dev = [ "ruff>=0.15.15", "fastapi>=0.136.3", "starlette>=1.2.1", - "redis>=5.0", + "redis>=8.0.0", "httpx[http2]>=0.27", "fakeredis>=2.21", "pre-commit>=4.6.0", @@ -71,7 +71,7 @@ watch = ["httpx>=0.27"] # Everything except finetune (which needs a GPU) all = [ "numpy>=1.24", "pymupdf>=1.27.2.3", "python-docx>=1.2.0", - "fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=5.0", + "fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=8.0.0", "httpx[http2]>=0.27", "transformers>=4.45", "peft>=0.13", "trl>=0.12", "datasets>=3.0", "bitsandbytes>=0.44", "accelerate>=1.13.0",