From 812155d68c470d4ff582f33791a3581a2908b8c2 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 15 Aug 2021 20:02:08 +1000 Subject: [PATCH] Do not install numpy for Python 3.10 on x86_64 --- config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.sh b/config.sh index 2dde6778b..e87c7f8b6 100644 --- a/config.sh +++ b/config.sh @@ -132,7 +132,7 @@ function run_tests { else python3 -m pip install numpy==1.20.3 fi - else + elif [[ "$MB_PYTHON_VERSION" != 3.10 ]] || [[ "$PLAT" != "x86_64" ]]; then python3 -m pip install numpy fi