From bc6fbef63269e10620b20c0a5f618ed2d63fd37e Mon Sep 17 00:00:00 2001 From: Kim Minjong Date: Fri, 4 Jul 2025 14:08:39 +0900 Subject: [PATCH] chore: Fix Python version restriction in pyproject --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index eec6a8d..c534471 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" repository = "https://github.com/samuelint/langchain-openai-api-bridge" [tool.poetry.dependencies] -python = ">=3.9,<4.0" +python = ">=3.10,<4.0" openai = "^1.35.1" langchain = { version = "^0.2.6", optional = true }