From 36115cbe3c7f97cac794c93585c782a627333a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alix=20Chagu=C3=A9?= <33317799+alix-tz@users.noreply.github.com> Date: Mon, 23 Sep 2024 22:24:27 -0400 Subject: [PATCH] Update requirements.txt Specifying Numpy version otherwise it upgrades to Numpy2 and return a "ValueError: numpy.dtype size changed, may indicate binary incompatibility. Expected 96 from C header, got 88 from PyObject" when we try to run the app --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 20b7f11..9dd294f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,5 @@ dash-table==5.0.0 plotly==5.14.1 python-Levenshtein==0.20.9 Levenshtein==0.20.9 -pandas==1.5.3 \ No newline at end of file +pandas==1.5.3 +numpy==1.26.4