From 0174b26e99dc98e3b5929c2cbbccc5f7665bcc73 Mon Sep 17 00:00:00 2001 From: Guntitat Sawadwuthikul Date: Thu, 23 May 2024 21:28:54 +0900 Subject: [PATCH] Specify scipy<1.11 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 43b8d44..543a9f5 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,9 @@ requirements = [i.strip() for i in f.readlines()] extras = { - "word_vector": ["gensim", "huggingface-hub"], + "word_vector": ["scipy<1.11.0", "gensim", "huggingface-hub"], "full": [ + "scipy<1.11.0", "gensim", "huggingface-hub" ]