From c55fabc01104914857d5425d410322e09f85c219 Mon Sep 17 00:00:00 2001 From: SoulHarsh007 Date: Wed, 19 Jun 2024 18:25:16 +0530 Subject: [PATCH] fix: lock numpy to 1.26.4 spacy is not compatible with numpy 2.x, see: https://github.com/explosion/spaCy/issues/13528 and thus the CI fails locking numpy to latest 1.x release fixes this problem Signed-off-by: SoulHarsh007 --- requirements.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index c4dc93f..590017d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ -rich +beautifulsoup4 +numpy==1.26.4 pandas requests -beautifulsoup4 -spacy \ No newline at end of file +rich +spacy