From 55f2c7527eef75deb833f6f61f276d0c9da55d66 Mon Sep 17 00:00:00 2001 From: Amin Sehati <76731670+amin-sehati@users.noreply.github.com> Date: Fri, 11 Jul 2025 18:09:17 -0400 Subject: [PATCH] Update pyproject.toml to be compatible with LangGraph Platform The current version of pyproject.toml throws dependency error when deployed on the current version of LangGraph Platform (Cloud SaaS). The dependencies are updated to functional versions. --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bae4c81..e9a2817 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,14 +9,14 @@ readme = "README.md" license = { text = "MIT" } requires-python = ">=3.9" dependencies = [ - "langgraph>=0.2.34,<0.3.0", + "langgraph>=0.5.2", # Optional (for selecting different models) - "langchain-openai>=0.2.1", - "langchain-anthropic>=0.2.1", - "langchain>=0.3.8", - "langchain-core>=0.3.8", - "python-dotenv>=1.0.1", - "langgraph-sdk>=0.1.32", + "langchain-openai>=0.3.27", + "langchain-anthropic>=0.3.17", + "langchain>=0.3.26", + "langchain-core>=0.3.68", + "python-dotenv>=1.1.1", + "langgraph-sdk>=0.1.72", ] [project.optional-dependencies]