Update bounds for other projects

This commit is contained in:
William Fu-Hinthorn
2025-12-09 15:50:52 -08:00
parent b7623e6f1f
commit 77ce58db23
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ readme = "README.md"
license = "MIT"
license-files = ['LICENSE']
dependencies = [
"langgraph-checkpoint>=2.1.2,<4.0.0",
"langgraph-checkpoint>=2.1.2,<5.0.0",
"orjson>=3.10.1",
"psycopg>=3.2.0",
"psycopg-pool>=3.2.0",
+1 -1
View File
@@ -12,7 +12,7 @@ readme = "README.md"
license = "MIT"
license-files = ['LICENSE']
dependencies = [
"langgraph-checkpoint>=3,<4.0.0",
"langgraph-checkpoint>=3,<5.0.0",
"aiosqlite>=0.20",
"sqlite-vec>=0.1.6",
]
+1 -1
View File
@@ -25,7 +25,7 @@ classifiers = [
]
dependencies = [
"langchain-core>=0.1",
"langgraph-checkpoint>=2.1.0,<4.0.0",
"langgraph-checkpoint>=2.1.0,<5.0.0",
"langgraph-sdk>=0.2.2,<0.3.0",
"langgraph-prebuilt>=1.0.2,<1.1.0",
"xxhash>=3.5.0",
+1 -1
View File
@@ -24,7 +24,7 @@ classifiers = [
'Programming Language :: Python :: 3.13',
]
dependencies = [
"langgraph-checkpoint>=2.1.0,<4.0.0",
"langgraph-checkpoint>=2.1.0,<5.0.0",
"langchain-core>=1.0.0",
]
+1 -1
View File
@@ -638,7 +638,7 @@ def test_react_agent_parallel_tool_calls(
for event in agent.stream(
{"messages": [("user", query)]}, config, stream_mode="values"
):
if "__interrupt__" not in event:
if "__interrupt__" not in event:
if messages := event.get("messages"):
message_types.append([m.type for m in messages])