From d254b13a988a18e0c5abdccf37a4494e280505b3 Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 12 Aug 2025 14:53:45 +0530 Subject: [PATCH 1/3] chore: Upgrade Langgraph deps --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e3045bbc..190d69af 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,4 +5,4 @@ numpy==2.2.6; python_version == "3.10" numpy==2.0.2; python_version <= "3.9" pgvector==0.4.1 SQLAlchemy[asyncio]==2.0.41 -langgraph==0.5.2 +langgraph==0.6.0 From 51b09b9854e37691f20bfdfc3699c7e925b886d2 Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 12 Aug 2025 14:54:46 +0530 Subject: [PATCH 2/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8f656b2c..837c2db4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ test = [ "pytest==8.4.1", "pytest-cov==6.2.1", "langchain-tests==0.3.20", - "langgraph==0.5.2" + "langgraph==0.6.0" ] [build-system] From 86f6a5c328d1ed67c663e487cf695724285353b0 Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 12 Aug 2025 14:55:01 +0530 Subject: [PATCH 3/3] Update test_async_checkpoint.py --- tests/test_async_checkpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_async_checkpoint.py b/tests/test_async_checkpoint.py index f3d8b5ed..c78fc726 100644 --- a/tests/test_async_checkpoint.py +++ b/tests/test_async_checkpoint.py @@ -39,7 +39,7 @@ empty_checkpoint, ) from langgraph.checkpoint.serde.jsonplus import JsonPlusSerializer -from langgraph.prebuilt import ( # type: ignore[import-not-found] +from langgraph.prebuilt import ( # type: ignore ToolNode, ValidationNode, create_react_agent,