text-splitters[patch]: Release 0.3.3 (#28723)

This commit is contained in:
Bagatur 2024-12-14 11:20:22 -08:00 committed by GitHub
parent 23b433f683
commit 679e3a9970
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 600 additions and 547 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-text-splitters"
version = "0.3.2"
version = "0.3.3"
description = "LangChain text splitting utilities"
authors = []
license = "MIT"
@ -23,23 +23,11 @@ ignore_missing_imports = "True"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
langchain-core = "^0.3.15"
langchain-core = "^0.3.25"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"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
select = [ "E", "F", "I", "T201", "D",]
ignore = [ "D100",]
[tool.coverage.run]
omit = [ "tests/*",]
@ -61,6 +49,12 @@ optional = true
[tool.poetry.group.test]
optional = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**" = [ "D",]
[tool.poetry.group.lint.dependencies]
ruff = "^0.5"