community[patch]: Release 0.2.17 (#26432)

This commit is contained in:
Bagatur
2024-09-13 09:56:39 -07:00
committed by GitHub
parent 8a02fd9c01
commit e32adad17a
3 changed files with 585 additions and 472 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "langchain-community"
version = "0.2.16"
version = "0.2.17"
description = "Community contributed LangChain integrations."
authors = []
license = "MIT"
@@ -30,7 +30,7 @@ ignore-words-list = "momento,collison,ned,foor,reworkd,parth,whats,aapply,mysogy
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = "^0.2.38"
langchain-core = "^0.2.39"
langchain = "^0.2.16"
SQLAlchemy = ">=1.4,<3"
requests = "^2"
@@ -88,6 +88,9 @@ pytest-mock = "^3.10.0"
pytest-socket = "^0.6.0"
syrupy = "^4.0.2"
requests-mock = "^1.11.0"
# TODO: hack to fix 3.9 builds
cffi = [{version = "<1.17.1", python="<3.10"}, {version = "*", python=">=3.10"}]
[tool.poetry.group.codespell.dependencies]
codespell = "^2.2.0"
@@ -98,6 +101,9 @@ vcrpy = "^6"
[tool.poetry.group.lint.dependencies]
ruff = "^0.5"
# TODO: hack to fix 3.9 builds
cffi = [{version = "<1.17.1", python="<3.10"}, {version = "*", python=">=3.10"}]
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"

View File

@@ -92,6 +92,7 @@ def test_test_group_dependencies(poetry_conf: Mapping[str, Any]) -> None:
"responses",
"syrupy",
"requests-mock",
"cffi",
]
)