Skip to content

Commit 5459ff1

Browse files
authored
chore: cap lib upper bounds, run sync (#33320)
1 parent f95669a commit 5459ff1

File tree

33 files changed

+114
-58
lines changed

33 files changed

+114
-58
lines changed

β€Žlibs/cli/pyproject.tomlβ€Ž

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,18 @@ langchain = "langchain_cli.cli:app"
2929
langchain-cli = "langchain_cli.cli:app"
3030

3131
[dependency-groups]
32-
dev = ["pytest>=7.4.2,<9.0.0", "pytest-watcher>=0.3.4,<1.0.0"]
33-
lint = ["ruff>=0.13.1,<0.14", "mypy>=1.18.1,<1.19"]
34-
test = ["langchain-core", "langchain"]
32+
dev = [
33+
"pytest>=7.4.2,<9.0.0",
34+
"pytest-watcher>=0.3.4,<1.0.0"
35+
]
36+
lint = [
37+
"ruff>=0.13.1,<0.14",
38+
"mypy>=1.18.1,<1.19"
39+
]
40+
test = [
41+
"langchain-core",
42+
"langchain"
43+
]
3544
typing = ["langchain"]
3645
test_integration = []
3746

β€Žlibs/cli/uv.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žlibs/partners/anthropic/pyproject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = { text = "MIT" }
88
requires-python = ">=3.9.0,<4.0.0"
99
dependencies = [
1010
"anthropic>=0.69.0,<1.0.0",
11-
"langchain-core>=0.3.76,<2.0.0",
11+
"langchain-core>=0.3.76,<1.0.0",
1212
"pydantic>=2.7.4,<3.0.0",
1313
]
1414
name = "langchain-anthropic"

β€Žlibs/partners/anthropic/uv.lockβ€Ž

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žlibs/partners/chroma/uv.lockβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žlibs/partners/deepseek/uv.lockβ€Ž

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žlibs/partners/exa/pyproject.tomlβ€Ž

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ build-backend = "pdm.backend"
66
authors = []
77
license = { text = "MIT" }
88
requires-python = ">=3.9.0,<4.0.0"
9-
dependencies = ["langchain-core>=0.3.76,<1.0.0", "exa-py>=1.0.8,<2.0.0"]
9+
dependencies = [
10+
"langchain-core>=0.3.76,<1.0.0",
11+
"exa-py>=1.0.8,<2.0.0"
12+
]
1013
name = "langchain-exa"
1114
version = "0.3.1"
1215
description = "An integration package connecting Exa and LangChain"

β€Žlibs/partners/exa/uv.lockβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žlibs/partners/fireworks/pyproject.tomlβ€Ž

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ test = [
3838
test_integration = []
3939
lint = ["ruff>=0.13.1,<0.14.0"]
4040
dev = ["langchain-core"]
41-
typing = ["mypy>=1.10.0,<2.0.0", "types-requests>=2.0.0,<3.0.0", "langchain-core"]
41+
typing = [
42+
"mypy>=1.10.0,<2.0.0",
43+
"types-requests>=2.0.0,<3.0.0",
44+
"langchain-core"
45+
]
4246

4347
[tool.uv.sources]
4448
langchain-core = { path = "../../core", editable = true }

β€Žlibs/partners/fireworks/uv.lockβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)