diff --git a/libs/text-splitters/pyproject.toml b/libs/text-splitters/pyproject.toml index 4e9d4eda146..03e6a313907 100644 --- a/libs/text-splitters/pyproject.toml +++ b/libs/text-splitters/pyproject.toml @@ -4,23 +4,23 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "langchain-text-splitters" -version = "0.2.2" +version = "0.2.3" description = "LangChain text splitting utilities" authors = [] license = "MIT" readme = "README.md" repository = "https://github.com/langchain-ai/langchain" -[tool.poetry.urls] -"Source Code" = "https://github.com/langchain-ai/langchain/tree/master/libs/text-splitters" -"Release Notes" = "https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-text-splitters%3D%3D0%22&expanded=true" - [tool.mypy] disallow_untyped_defs = "True" [[tool.mypy.overrides]] module = [ "transformers", "sentence_transformers", "nltk.tokenize", "konlpy.tag", "bs4", "pytest",] ignore_missing_imports = "True" +[tool.poetry.urls] +"Source Code" = "https://github.com/langchain-ai/langchain/tree/master/libs/text-splitters" +"Release Notes" = "https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-text-splitters%3D%3D0%22&expanded=true" + [tool.poetry.dependencies] python = ">=3.8.1,<4.0" langchain-core = "^0.2.10"