From a4b61f6ab1eb95118c3edbe4418f197d7a894a3b Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Fri, 13 Sep 2024 18:58:42 -0400 Subject: [PATCH] Remove quiet mode when installing numpy --- manywheel/build_common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manywheel/build_common.sh b/manywheel/build_common.sh index d93ee1123..29d605c0d 100644 --- a/manywheel/build_common.sh +++ b/manywheel/build_common.sh @@ -122,14 +122,14 @@ python setup.py clean retry pip install -qr requirements.txt case ${DESIRED_PYTHON} in cp38*) - retry pip install -q numpy==1.15 + retry pip install numpy==1.15 ;; cp31*) - retry pip install -q --pre numpy==2.0.2 + retry pip install --pre numpy==2.0.2 ;; # Should catch 3.9+ *) - retry pip install -q --pre numpy==2.0.2 + retry pip install --pre numpy==2.0.2 ;; esac