You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/09/28 15:44:31 UTC

[arrow] branch master updated: ARROW-3352: [Packaging] Fix recently failing wheel builds

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

wesm 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 25927a5  ARROW-3352: [Packaging] Fix recently failing wheel builds
25927a5 is described below

commit 25927a500bba7eeb77576f96d6973007441eb5d0
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Fri Sep 28 11:44:22 2018 -0400

    ARROW-3352: [Packaging] Fix recently failing wheel builds
    
    Builds are green: https://github.com/kszucs/crossbow/branches/all?utf8=%E2%9C%93&query=build-314
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    
    Closes #2653 from kszucs/ARROW-3352 and squashes the following commits:
    
    e15268357 <Krisztián Szűcs>  adjust manylinux packages to recent changes
    6d126210a <Krisztián Szűcs>  pin numpy=1.14 for windows wheels
---
 dev/tasks/python-wheels/travis.linux.yml | 9 ++++-----
 dev/tasks/tasks.yml                      | 4 ++--
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/dev/tasks/python-wheels/travis.linux.yml b/dev/tasks/python-wheels/travis.linux.yml
index 8ee82d4..ae7a3cc 100644
--- a/dev/tasks/python-wheels/travis.linux.yml
+++ b/dev/tasks/python-wheels/travis.linux.yml
@@ -41,13 +41,12 @@ script:
   - mkdir -p dist
 
   - pushd arrow/python/manylinux1
-  - git clone ../../ arrow
-  - docker build -t arrow-base-x86_64 -f Dockerfile-x86_64 .
-  - docker run --shm-size=2g --rm
+  - docker run --shm-size=2g
       -e SETUPTOOLS_SCM_PRETEND_VERSION=$PYARROW_VERSION
       -e PYTHON_VERSIONS=$PYTHON_VERSION
-      -v $PWD:/io arrow-base-x86_64
-      /io/build_arrow.sh
+      -v $PWD:/io
+      -v $PWD/../../:/arrow
+      quay.io/xhochy/arrow_manylinux1_x86_64_base:latest /io/build_arrow.sh
   - popd
 
   - sudo mv arrow/python/manylinux1/dist/* dist/
diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
index 9963f27..30403e1 100644
--- a/dev/tasks/tasks.yml
+++ b/dev/tasks/tasks.yml
@@ -208,7 +208,7 @@ tasks:
     platform: win
     template: python-wheels/appveyor.yml
     params:
-      numpy_version: 1.13
+      numpy_version: 1.14
       python_version: 3.5
     artifacts:
       - pyarrow-{version}-cp35-cp35m-win_amd64.whl
@@ -217,7 +217,7 @@ tasks:
     platform: win
     template: python-wheels/appveyor.yml
     params:
-      numpy_version: 1.13
+      numpy_version: 1.14
       python_version: 3.6
     artifacts:
       - pyarrow-{version}-cp36-cp36m-win_amd64.whl