From dd8e4cd0204e0156686014295bf3f893c01c0ce2 Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Fri, 2 Aug 2024 13:27:22 -0700 Subject: [PATCH] text-splitters[patch]: Release 0.2.3 (#24998) --- libs/text-splitters/pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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"