chore(text-splitters): relax max bound for langchain-core (#32739)

This commit is contained in:
Sydney Runkle
2025-08-28 13:05:47 -04:00
committed by GitHub
parent 26e5d1302b
commit 38cdd7a2ec
2 changed files with 4 additions and 4 deletions

View File

@@ -7,11 +7,11 @@ authors = []
license = { text = "MIT" } license = { text = "MIT" }
requires-python = ">=3.9" requires-python = ">=3.9"
dependencies = [ dependencies = [
"langchain-core<1.0.0,>=0.3.72", "langchain-core<2.0.0,>=0.3.72",
"pip>=25.2", "pip>=25.2",
] ]
name = "langchain-text-splitters" name = "langchain-text-splitters"
version = "0.3.9" version = "0.3.10"
description = "LangChain text splitting utilities" description = "LangChain text splitting utilities"
readme = "README.md" readme = "README.md"

View File

@@ -1,5 +1,5 @@
version = 1 version = 1
revision = 3 revision = 2
requires-python = ">=3.9" requires-python = ">=3.9"
resolution-markers = [ resolution-markers = [
"python_full_version >= '3.13'", "python_full_version >= '3.13'",
@@ -1148,7 +1148,7 @@ typing = [
[[package]] [[package]]
name = "langchain-text-splitters" name = "langchain-text-splitters"
version = "0.3.9" version = "0.3.10"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "langchain-core" }, { name = "langchain-core" },