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] [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"