From f1815695108a7b12f1c5c435a1016c2b990edfff Mon Sep 17 00:00:00 2001 From: Yurii Paniv Date: Fri, 26 Apr 2024 00:47:59 +0300 Subject: [PATCH] Fix scipy --- requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index cb4300f..8f8e362 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,3 +8,4 @@ stanza==1.7 # fix for ukrainian-word-stress git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c gradio # 3.34 huggingface_hub # ==0.11.1 +scipy<1.12.0 # fix for espnet, need to update espnet version \ No newline at end of file diff --git a/setup.py b/setup.py index 8472047..2b08cef 100644 --- a/setup.py +++ b/setup.py @@ -18,5 +18,6 @@ "ukrainian-word-stress==1.1.0", "ukrainian_accentor @ git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c", "stanza==1.7", # for ukrainian-word-stress + "scipy<1.12.0", # for espnet ], )