From ac404eaa9573602314b655a3234bfd096f173aab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 02:13:51 +0000 Subject: [PATCH] chore(deps-dev): update openai requirement in /python 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.0.0...v2.47.0) --- updated-dependencies: - dependency-name: openai dependency-version: 2.47.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- python/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 64ed781..fbeb78b 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -39,10 +39,10 @@ dependencies = ["aiohttp>=3.13.5"] [project.optional-dependencies] fuzzy = ["rapidfuzz>=3.13.0"] -openai = ["openai>=1.0"] +openai = ["openai>=2.47.0"] anthropic = ["anthropic>=0.25"] rich = ["rich>=13.0"] -all = ["rapidfuzz>=3.13.0", "openai>=1.0", "anthropic>=0.25", "rich>=13.0"] +all = ["rapidfuzz>=3.13.0", "openai>=2.47.0", "anthropic>=0.25", "rich>=13.0"] [project.urls] Homepage = "https://speed785.github.io/evalforge"