From 5b1d6a87530daa7e4fe2bfbefa597ebc175e02b1 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 2 Jan 2022 15:18:37 +1100 Subject: [PATCH] Limit numpy on 32-bit to 1.21.5 for Python 3.8 and 3.9 --- config.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.sh b/config.sh index b34e5b2d4..2a6264a79 100644 --- a/config.sh +++ b/config.sh @@ -147,6 +147,8 @@ function run_tests { python3 -m pip install numpy==1.20.3 elif [[ "$MB_PYTHON_VERSION" == 3.10 ]] && [[ $(uname -m) == "i686" ]]; then python3 -m pip install numpy==1.21.4 + elif [[ "$MB_PYTHON_VERSION" == 3.8 || "$MB_PYTHON_VERSION" == 3.9 ]] && [[ $(uname -m) == "i686" ]]; then + python3 -m pip install numpy==1.21.5 else python3 -m pip install numpy fi