From 64d6123a5888ed6c91d4c5f27e57d814464969c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 03:45:37 +0000 Subject: [PATCH 1/2] chore: bump openai from 2.52.0 to 3.1.0 Bumps [openai](https://github.com/openai/openai-python) from 2.52.0 to 3.1.0. - [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/v2.52.0...v3.1.0) --- updated-dependencies: - dependency-name: openai dependency-version: 2.53.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 35d7b32..1173b08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "discord.py==2.7.1", "pydantic==2.13.4", "pydantic-settings==2.15.0", - "openai==2.52.0", + "openai==3.1.0", "aiosqlite==0.22.1", "feedparser==6.0.14", "prometheus-client==0.26.0", From ced5d45e28bb67d861de281197aedb5e35432627 Mon Sep 17 00:00:00 2001 From: Ross Tomsic Date: Mon, 17 Aug 2026 23:48:00 -0400 Subject: [PATCH 2/2] chore: add httpx as explicit dev dep openai 3.0.0 stopped installing it transitively (HTTPX2 migration); tests/test_llm.py imports it directly. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1173b08..614be1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ dev = [ "pytest-asyncio==1.4.0", "pytest-cov==7.1.0", "ruff==0.16.2", + "httpx==0.28.1", ] [tool.hatch.build.targets.wheel]