From 4fe869f1c336e1df9fe3a6bd37f39a4d354a8608 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Fri, 6 Mar 2026 17:38:05 -0500 Subject: [PATCH] fix(langchain): bump minimum langchain-core to 0.3.73 (#35608) The within-batch deduplication fix (langchain-core 0.3.73, #32273) changed `num_skipped` counting in the indexing API. Tests in `libs/langchain` were updated to expect the new behavior, but the minimum version was left at 0.3.72, causing [pre-release checks to fail](https://github.com/langchain-ai/langchain/actions/runs/22783515938/job/66097466123). Created with [Deep Agents CLI](https://docs.langchain.com/oss/python/deepagents/cli/overview). --- libs/langchain/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain/pyproject.toml b/libs/langchain/pyproject.toml index f0c958a6fdd..d3f88ef1857 100644 --- a/libs/langchain/pyproject.toml +++ b/libs/langchain/pyproject.toml @@ -7,7 +7,7 @@ authors = [] license = { text = "MIT" } requires-python = ">=3.9.0,<4.0.0" dependencies = [ - "langchain-core>=0.3.72,<1.0.0", + "langchain-core>=0.3.73,<1.0.0", "langchain-text-splitters>=0.3.9,<1.0.0", "langsmith>=0.1.17,<1.0.0", "pydantic>=2.7.4,<3.0.0",