core[patch]: only support pydantic >= 2.9 for now (#26176)

For now we'll only support pydantic ^ 2.9. We'll relax the constraint
next week once we work around some issues with pydantic 2.7 / 2.8.
This commit is contained in:
Eugene Yurtsev
2024-09-06 18:13:17 -04:00
committed by GitHub
parent 6e2a72c218
commit 0319ccd273
2 changed files with 38 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "langchain-core"
version = "0.3.0.dev2"
version = "0.3.0.dev3"
description = "Building applications with LLMs through composability"
authors = []
license = "MIT"
@@ -37,7 +37,7 @@ jsonpatch = "^1.33"
PyYAML = ">=5.3"
packaging = ">=23.2,<25"
typing-extensions = ">=4.7"
pydantic = "^2.7.4"
pydantic = "^2.9"
[tool.poetry.extras]