mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-11 16:01:33 +00:00
fix(langchain): fix mypy versions in langchain_v1
(#32816)
This commit is contained in:
committed by
GitHub
parent
aa63de9366
commit
05a61f9508
@@ -62,7 +62,7 @@ lint = [
|
|||||||
"ruff>=0.12.2",
|
"ruff>=0.12.2",
|
||||||
]
|
]
|
||||||
typing = [
|
typing = [
|
||||||
"mypy<0.18,>=1.17.1",
|
"mypy<1.18,>=1.17.1",
|
||||||
"types-toml>=0.10.8.20240310",
|
"types-toml>=0.10.8.20240310",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
12
libs/langchain_v1/uv.lock
generated
12
libs/langchain_v1/uv.lock
generated
@@ -1492,7 +1492,6 @@ codespell = [
|
|||||||
{ name = "codespell" },
|
{ name = "codespell" },
|
||||||
]
|
]
|
||||||
lint = [
|
lint = [
|
||||||
{ name = "mypy" },
|
|
||||||
{ name = "ruff" },
|
{ name = "ruff" },
|
||||||
]
|
]
|
||||||
test = [
|
test = [
|
||||||
@@ -1519,6 +1518,7 @@ test-integration = [
|
|||||||
{ name = "wrapt" },
|
{ name = "wrapt" },
|
||||||
]
|
]
|
||||||
typing = [
|
typing = [
|
||||||
|
{ name = "mypy" },
|
||||||
{ name = "types-toml" },
|
{ name = "types-toml" },
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -1548,10 +1548,7 @@ provides-extras = ["anthropic", "openai", "azure-ai", "google-vertexai", "google
|
|||||||
|
|
||||||
[package.metadata.requires-dev]
|
[package.metadata.requires-dev]
|
||||||
codespell = [{ name = "codespell", specifier = ">=2.2.0,<3.0.0" }]
|
codespell = [{ name = "codespell", specifier = ">=2.2.0,<3.0.0" }]
|
||||||
lint = [
|
lint = [{ name = "ruff", specifier = ">=0.12.2" }]
|
||||||
{ name = "mypy", specifier = ">=1.15" },
|
|
||||||
{ name = "ruff", specifier = ">=0.12.11,<0.13" },
|
|
||||||
]
|
|
||||||
test = [
|
test = [
|
||||||
{ name = "langchain-openai", editable = "../partners/openai" },
|
{ name = "langchain-openai", editable = "../partners/openai" },
|
||||||
{ name = "langchain-tests", editable = "../standard-tests" },
|
{ name = "langchain-tests", editable = "../standard-tests" },
|
||||||
@@ -1575,7 +1572,10 @@ test-integration = [
|
|||||||
{ name = "vcrpy", specifier = ">=7.0" },
|
{ name = "vcrpy", specifier = ">=7.0" },
|
||||||
{ name = "wrapt", specifier = ">=1.15.0" },
|
{ name = "wrapt", specifier = ">=1.15.0" },
|
||||||
]
|
]
|
||||||
typing = [{ name = "types-toml", specifier = ">=0.10.8.20240310" }]
|
typing = [
|
||||||
|
{ name = "mypy", specifier = ">=1.17.1,<1.18" },
|
||||||
|
{ name = "types-toml", specifier = ">=0.10.8.20240310" },
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "langchain-anthropic"
|
name = "langchain-anthropic"
|
||||||
|
Reference in New Issue
Block a user