From d6ff1463eb3e3abe56a5a0a24179c3cd531ef038 Mon Sep 17 00:00:00 2001 From: DoodleBears Date: Mon, 1 Jul 2024 15:56:51 +0900 Subject: [PATCH] version(v1.1.0): release, update langdetect dependency to langdetect-py (to fix Korean detection) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a21dbaf..b506e4e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(*relpath): setup( name="split_lang", - version="1.0.0", + version="1.0.1", description="A package for splitting sentences by language (concatenating over-split substrings based on their language)", long_description=read("README.md"), long_description_content_type="text/markdown", @@ -23,7 +23,7 @@ def read(*relpath): license="MIT", packages=find_packages(), install_requires=[ - "langdetect", + "langdetect-py", "fast_langdetect", "wtpsplit", "pydantic",