From 7af257bccf3b0b97fb552d3f5b4fde8dac9c1a73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 03:57:24 +0000 Subject: [PATCH] Update chromadb requirement from ~=0.4 to >=0.4,<2.0 Updates the requirements on [chromadb](https://github.com/chroma-core/chroma) to permit the latest version. - [Release notes](https://github.com/chroma-core/chroma/releases) - [Changelog](https://github.com/chroma-core/chroma/blob/main/RELEASE_PROCESS.md) - [Commits](https://github.com/chroma-core/chroma/compare/0.4.0...1.5.9) --- updated-dependencies: - dependency-name: chromadb dependency-version: 1.5.9 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 02c3222..7707b59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,11 +26,11 @@ dependencies = [] [project.optional-dependencies] openai = ["openai~=1.30"] -chroma = ["chromadb~=0.4"] +chroma = ["chromadb>=0.4,<2.0"] sentence = ["sentence-transformers~=2.6"] serve = ["fastapi~=0.110", "uvicorn~=0.27"] dev = ["pytest~=8.0", "coverage~=7.0", "ruff~=0.5"] -all = ["openai~=1.30", "chromadb~=0.4", "sentence-transformers~=2.6", "fastapi~=0.110", "uvicorn~=0.27"] +all = ["openai~=1.30", "chromadb>=0.4,<2.0", "sentence-transformers~=2.6", "fastapi~=0.110", "uvicorn~=0.27"] [project.urls] Homepage = "https://github.com/smartfind/loop-memory"