You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/06/30 08:12:35 UTC

[arrow] branch master updated: ARROW-16908: [Python][CI] Avoid installing wrong numpy version required for testing wheels (#13449)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 841be69dc7 ARROW-16908: [Python][CI] Avoid installing wrong numpy version required for testing wheels (#13449)
841be69dc7 is described below

commit 841be69dc715ecfd99d0f9123c1961b09fb78c84
Author: Raúl Cumplido <ra...@gmail.com>
AuthorDate: Thu Jun 30 10:12:28 2022 +0200

    ARROW-16908: [Python][CI] Avoid installing wrong numpy version required for testing wheels (#13449)
    
    Authored-by: Raúl Cumplido <ra...@gmail.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 ci/scripts/python_wheel_unix_test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/scripts/python_wheel_unix_test.sh b/ci/scripts/python_wheel_unix_test.sh
index 2b2fe9cdf1..2de76ec835 100755
--- a/ci/scripts/python_wheel_unix_test.sh
+++ b/ci/scripts/python_wheel_unix_test.sh
@@ -55,7 +55,7 @@ export PARQUET_TEST_DATA=${source_dir}/submodules/parquet-testing/data
 
 if [ "${INSTALL_PYARROW}" == "ON" ]; then
   # Install the built wheels
-  pip install --force-reinstall ${source_dir}/python/repaired_wheels/*.whl
+  pip install ${source_dir}/python/repaired_wheels/*.whl
 fi
 
 if [ "${CHECK_IMPORTS}" == "ON" ]; then