From 3ded8b4f5426c74e8445719c00390d24536797a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 03:57:07 +0000 Subject: [PATCH] Update openai requirement from ~=1.30 to >=1.30,<3.0 Updates the requirements on [openai](https://github.com/openai/openai-python) to permit the latest version. - [Release notes](https://github.com/openai/openai-python/releases) - [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/openai/openai-python/compare/v1.30.0...v2.46.0) --- updated-dependencies: - dependency-name: openai dependency-version: 2.46.0 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..6ee6b7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,12 +25,12 @@ classifiers = [ dependencies = [] [project.optional-dependencies] -openai = ["openai~=1.30"] +openai = ["openai>=1.30,<3.0"] chroma = ["chromadb~=0.4"] 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,<3.0", "chromadb~=0.4", "sentence-transformers~=2.6", "fastapi~=0.110", "uvicorn~=0.27"] [project.urls] Homepage = "https://github.com/smartfind/loop-memory"