mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-01 02:50:47 +00:00
community[patch]: Release 0.3.9 (#28451)
This commit is contained in:
@@ -1,10 +1,10 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = [ "poetry-core>=1.0.0",]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "langchain-community"
|
name = "langchain-community"
|
||||||
version = "0.3.8"
|
version = "0.3.9"
|
||||||
description = "Community contributed LangChain integrations."
|
description = "Community contributed LangChain integrations."
|
||||||
authors = []
|
authors = []
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@@ -12,15 +12,12 @@ readme = "README.md"
|
|||||||
repository = "https://github.com/langchain-ai/langchain"
|
repository = "https://github.com/langchain-ai/langchain"
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
exclude = [
|
exclude = [ "tests/examples/non-utf8-encoding.py", "tests/integration_tests/examples/non-utf8-encoding.py",]
|
||||||
"tests/examples/non-utf8-encoding.py",
|
|
||||||
"tests/integration_tests/examples/non-utf8-encoding.py",
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.mypy]
|
[tool.mypy]
|
||||||
ignore_missing_imports = "True"
|
ignore_missing_imports = "True"
|
||||||
disallow_untyped_defs = "True"
|
disallow_untyped_defs = "True"
|
||||||
exclude = ["notebooks", "examples", "example_data"]
|
exclude = [ "notebooks", "examples", "example_data",]
|
||||||
|
|
||||||
[tool.codespell]
|
[tool.codespell]
|
||||||
skip = ".git,*.pdf,*.svg,*.pdf,*.yaml,*.ipynb,poetry.lock,*.min.js,*.css,package-lock.json,example_data,_dist,examples,*.trig"
|
skip = ".git,*.pdf,*.svg,*.pdf,*.yaml,*.ipynb,poetry.lock,*.min.js,*.css,package-lock.json,example_data,_dist,examples,*.trig"
|
||||||
@@ -53,24 +50,16 @@ version = ">=1.26.2,<3"
|
|||||||
python = ">=3.12"
|
python = ">=3.12"
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
select = ["E", "F", "I", "T201"]
|
select = [ "E", "F", "I", "T201",]
|
||||||
|
|
||||||
[tool.coverage.run]
|
[tool.coverage.run]
|
||||||
omit = ["tests/*"]
|
omit = [ "tests/*",]
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
addopts = "--strict-markers --strict-config --durations=5 --snapshot-warn-unused -vv"
|
addopts = "--strict-markers --strict-config --durations=5 --snapshot-warn-unused -vv"
|
||||||
markers = [
|
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",]
|
||||||
"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",
|
|
||||||
]
|
|
||||||
asyncio_mode = "auto"
|
asyncio_mode = "auto"
|
||||||
filterwarnings = [
|
filterwarnings = [ "ignore::langchain_core._api.beta_decorator.LangChainBetaWarning", "ignore::langchain_core._api.deprecation.LangChainDeprecationWarning:test", "ignore::langchain_core._api.deprecation.LangChainPendingDeprecationWarning:test",]
|
||||||
"ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",
|
|
||||||
"ignore::langchain_core._api.deprecation.LangChainDeprecationWarning:test",
|
|
||||||
"ignore::langchain_core._api.deprecation.LangChainPendingDeprecationWarning:test",
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.poetry.group.test]
|
[tool.poetry.group.test]
|
||||||
optional = true
|
optional = true
|
||||||
|
Reference in New Issue
Block a user