From 050a4c821e17456c4d9cffc53101e093372c182b Mon Sep 17 00:00:00 2001 From: kemuriririn Date: Mon, 8 Sep 2025 22:14:34 +0800 Subject: [PATCH] Dev kemurin (#287) * update deps for windows * update reqs & README * update README.md * update README.md * use wetext to replace WeTextProcessing on windows --------- Co-authored-by: wangyining02 --- indextts/utils/front.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indextts/utils/front.py b/indextts/utils/front.py index e6c2e44..eefd19f 100644 --- a/indextts/utils/front.py +++ b/indextts/utils/front.py @@ -91,7 +91,7 @@ class TextNormalizer: import platform if self.zh_normalizer is not None and self.en_normalizer is not None: return - if platform.system() == "Darwin": + if platform.system() == "Darwin" or platform.system() == "Windows": from wetext import Normalizer self.zh_normalizer = Normalizer(remove_erhua=False, lang="zh", operator="tn")