Skip to content

Commit b0ac6fe

Browse files
authored
community[patch]: Release 0.2.13 (#25806)
1 parent 85aef76 commit b0ac6fe

File tree

2 files changed

+75
-78
lines changed

2 files changed

+75
-78
lines changed

libs/community/poetry.lock

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

libs/community/pyproject.toml

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
[build-system]
2-
requires = ["poetry-core>=1.0.0"]
2+
requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "langchain-community"
7-
version = "0.2.12"
7+
version = "0.2.13"
88
description = "Community contributed LangChain integrations."
99
authors = []
1010
license = "MIT"
1111
readme = "README.md"
1212
repository = "https://github.com/langchain-ai/langchain"
1313

1414
[tool.ruff]
15-
exclude = [
16-
"tests/examples/non-utf8-encoding.py",
17-
"tests/integration_tests/examples/non-utf8-encoding.py",
18-
]
15+
exclude = [ "tests/examples/non-utf8-encoding.py", "tests/integration_tests/examples/non-utf8-encoding.py",]
1916

2017
[tool.mypy]
2118
ignore_missing_imports = "True"
2219
disallow_untyped_defs = "True"
23-
exclude = ["notebooks", "examples", "example_data"]
20+
exclude = [ "notebooks", "examples", "example_data",]
2421

2522
[tool.codespell]
2623
skip = ".git,*.pdf,*.svg,*.pdf,*.yaml,*.ipynb,poetry.lock,*.min.js,*.css,package-lock.json,example_data,_dist,examples,*.trig"
@@ -33,16 +30,15 @@ ignore-words-list = "momento,collison,ned,foor,reworkd,parth,whats,aapply,mysogy
3330

3431
[tool.poetry.dependencies]
3532
python = ">=3.8.1,<4.0"
36-
langchain-core = "^0.2.30"
37-
langchain = "^0.2.13"
33+
langchain-core = "^0.2.35"
34+
langchain = "^0.2.15"
3835
SQLAlchemy = ">=1.4,<3"
3936
requests = "^2"
4037
PyYAML = ">=5.3"
4138
aiohttp = "^3.8.3"
4239
tenacity = "^8.1.0,!=8.4.0"
4340
dataclasses-json = ">= 0.5.7, < 0.7"
4441
langsmith = "^0.1.0"
45-
4642
[[tool.poetry.dependencies.numpy]]
4743
version = "^1"
4844
python = "<3.12"
@@ -52,18 +48,14 @@ version = "^1.26.0"
5248
python = ">=3.12"
5349

5450
[tool.ruff.lint]
55-
select = ["E", "F", "I", "T201"]
51+
select = [ "E", "F", "I", "T201",]
5652

5753
[tool.coverage.run]
58-
omit = ["tests/*"]
54+
omit = [ "tests/*",]
5955

6056
[tool.pytest.ini_options]
6157
addopts = "--strict-markers --strict-config --durations=5 --snapshot-warn-unused -vv"
62-
markers = [
63-
"requires: mark tests as requiring a specific library",
64-
"scheduled: mark tests to run in scheduled testing",
65-
"compile: mark placeholder test used to compile integration tests without running them",
66-
]
58+
markers = [ "requires: mark tests as requiring a specific library", "scheduled: mark tests to run in scheduled testing", "compile: mark placeholder test used to compile integration tests without running them",]
6759
asyncio_mode = "auto"
6860

6961
[tool.poetry.group.test]

0 commit comments

Comments
 (0)