mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-22 23:00:00 +00:00
text-splitters[patch]: Release 0.3.3 (#28723)
This commit is contained in:
parent
23b433f683
commit
679e3a9970
1121
libs/text-splitters/poetry.lock
generated
1121
libs/text-splitters/poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "langchain-text-splitters"
|
name = "langchain-text-splitters"
|
||||||
version = "0.3.2"
|
version = "0.3.3"
|
||||||
description = "LangChain text splitting utilities"
|
description = "LangChain text splitting utilities"
|
||||||
authors = []
|
authors = []
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -23,23 +23,11 @@ ignore_missing_imports = "True"
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.9,<4.0"
|
python = ">=3.9,<4.0"
|
||||||
langchain-core = "^0.3.15"
|
langchain-core = "^0.3.25"
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
select = [
|
select = [ "E", "F", "I", "T201", "D",]
|
||||||
"E", # pycodestyle
|
ignore = [ "D100",]
|
||||||
"F", # Pyflakes
|
|
||||||
"I", # isort
|
|
||||||
"T201", # print
|
|
||||||
"D", # pydocstyle
|
|
||||||
]
|
|
||||||
ignore = ["D100"] # ignore missing module docstring
|
|
||||||
|
|
||||||
[tool.ruff.lint.pydocstyle]
|
|
||||||
convention = "google"
|
|
||||||
|
|
||||||
[tool.ruff.lint.per-file-ignores]
|
|
||||||
"tests/**" = ["D"] # ignore docstring checks for tests
|
|
||||||
|
|
||||||
[tool.coverage.run]
|
[tool.coverage.run]
|
||||||
omit = [ "tests/*",]
|
omit = [ "tests/*",]
|
||||||
@ -61,6 +49,12 @@ optional = true
|
|||||||
[tool.poetry.group.test]
|
[tool.poetry.group.test]
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
|
[tool.ruff.lint.pydocstyle]
|
||||||
|
convention = "google"
|
||||||
|
|
||||||
|
[tool.ruff.lint.per-file-ignores]
|
||||||
|
"tests/**" = [ "D",]
|
||||||
|
|
||||||
[tool.poetry.group.lint.dependencies]
|
[tool.poetry.group.lint.dependencies]
|
||||||
ruff = "^0.5"
|
ruff = "^0.5"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user