Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E4399200C74 for ; Sun, 14 May 2017 18:04:31 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E2D05160BA9; Sun, 14 May 2017 16:04:31 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 35E7F160BA6 for ; Sun, 14 May 2017 18:04:31 +0200 (CEST) Received: (qmail 99728 invoked by uid 500); 14 May 2017 16:04:30 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 99719 invoked by uid 99); 14 May 2017 16:04:30 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 May 2017 16:04:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 33FC2DFE15; Sun, 14 May 2017 16:04:30 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@arrow.apache.org Message-Id: <53e2206687954a18b7d0fc11baef5a37@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: ARROW-1024: Python: Update build time numpy version to 1.10.1 Date: Sun, 14 May 2017 16:04:30 +0000 (UTC) archived-at: Sun, 14 May 2017 16:04:32 -0000 Repository: arrow Updated Branches: refs/heads/master d8d3d8435 -> 852ee4fbf ARROW-1024: Python: Update build time numpy version to 1.10.1 Change-Id: I5cfe95272d43fd0cb08cac6646ffde30adc94bdf Author: Uwe L. Korn Closes #684 from xhochy/ARROW-1024 and squashes the following commits: 0d1f2f3d [Uwe L. Korn] ARROW-1024: Python: Update build time numpy version to 1.10.1 Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/852ee4fb Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/852ee4fb Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/852ee4fb Branch: refs/heads/master Commit: 852ee4fbf79bb76a2199237cfe7c6a6a29deba69 Parents: d8d3d84 Author: Uwe L. Korn Authored: Sun May 14 12:04:25 2017 -0400 Committer: Wes McKinney Committed: Sun May 14 12:04:25 2017 -0400 ---------------------------------------------------------------------- python/manylinux1/Dockerfile-x86_64 | 2 +- python/manylinux1/scripts/build_virtualenvs.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/852ee4fb/python/manylinux1/Dockerfile-x86_64 ---------------------------------------------------------------------- diff --git a/python/manylinux1/Dockerfile-x86_64 b/python/manylinux1/Dockerfile-x86_64 index 08fecb0..ad40e79 100644 --- a/python/manylinux1/Dockerfile-x86_64 +++ b/python/manylinux1/Dockerfile-x86_64 @@ -9,7 +9,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. See accompanying LICENSE file. -FROM quay.io/xhochy/arrow_manylinux1_x86_64_base:ARROW-947 +FROM quay.io/xhochy/arrow_manylinux1_x86_64_base:ARROW-1024 ADD arrow /arrow WORKDIR /arrow/cpp http://git-wip-us.apache.org/repos/asf/arrow/blob/852ee4fb/python/manylinux1/scripts/build_virtualenvs.sh ---------------------------------------------------------------------- diff --git a/python/manylinux1/scripts/build_virtualenvs.sh b/python/manylinux1/scripts/build_virtualenvs.sh index ee8a827..60d6580 100755 --- a/python/manylinux1/scripts/build_virtualenvs.sh +++ b/python/manylinux1/scripts/build_virtualenvs.sh @@ -28,7 +28,7 @@ for PYTHON in ${PYTHON_VERSIONS}; do PATH="$PATH:$(cpython_path $PYTHON)" echo "=== (${PYTHON}) Installing build dependencies ===" - $PIPI_IO "numpy==1.9.0" + $PIPI_IO "numpy==1.10.1" $PIPI_IO "cython==0.25.2" $PIPI_IO "pandas==0.20.1" $PIPI_IO "virtualenv==15.1.0"