From 2563f63dde963879434680d26ba5ab56d7824ccf Mon Sep 17 00:00:00 2001 From: tbaudier Date: Fri, 17 Jul 2026 16:30:49 +0200 Subject: [PATCH] Update runTest.sh With newer version of numpy >2.5.0, we have an error AttributeError: module 'numpy' has no attribute 'long'. Did you mean: 'log'? in scipy code Force the version <2.5.0 by forcing the version of scipy < 1.8.0 --- .github/workflows/runTest.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/runTest.sh b/.github/workflows/runTest.sh index 3fbd36e..cbff0b2 100755 --- a/.github/workflows/runTest.sh +++ b/.github/workflows/runTest.sh @@ -85,6 +85,7 @@ source /etc/mybashrc cd /home/ export LC_ALL=en_US.utf8 export LANG=en_US.utf8 +pip3 install "scipy<1.18.0" pip3 install click colorama "numpy<2.0.0" OutputTest=$(python3 runBenchmark.py -t ${TEST}) echo "$OutputTest"