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 ED593200D21 for ; Mon, 2 Oct 2017 05:24:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id EBD6A1609D9; Mon, 2 Oct 2017 03:24:26 +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 3EA261609C8 for ; Mon, 2 Oct 2017 05:24:26 +0200 (CEST) Received: (qmail 21278 invoked by uid 500); 2 Oct 2017 03:24:25 -0000 Mailing-List: contact commits-help@kudu.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kudu.apache.org Delivered-To: mailing list commits@kudu.apache.org Received: (qmail 21269 invoked by uid 99); 2 Oct 2017 03:24:25 -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; Mon, 02 Oct 2017 03:24:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 32D43E96ED; Mon, 2 Oct 2017 03:24:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: adar@apache.org To: commits@kudu.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: kudu git commit: python: pin to cython 0.26.1 Date: Mon, 2 Oct 2017 03:24:25 +0000 (UTC) archived-at: Mon, 02 Oct 2017 03:24:27 -0000 Repository: kudu Updated Branches: refs/heads/branch-1.4.x 20bf4a41f -> b92cd9f53 python: pin to cython 0.26.1 Some of our el6-based builds are running into an installation issue [1] that appears to have surfaced in Cython 0.27. We don't actually need any features from recent Cython releases, so let's pin to the last one known to be good. 1. https://github.com/cython/cython/issues/1879 Change-Id: I201f4c078ff1308f267f73275f7cacb35161a2d3 Reviewed-on: http://gerrit.cloudera.org:8080/8155 Reviewed-by: Jean-Daniel Cryans Tested-by: Kudu Jenkins (cherry picked from commit 36f4259f425d2e756153863deb83ca40478331cd) Reviewed-on: http://gerrit.cloudera.org:8080/8175 Reviewed-by: Todd Lipcon Tested-by: Adar Dembo Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/b92cd9f5 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/b92cd9f5 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/b92cd9f5 Branch: refs/heads/branch-1.4.x Commit: b92cd9f5352b1729b8635822ddaf9032b58731d5 Parents: 20bf4a4 Author: Adar Dembo Authored: Wed Sep 27 13:28:54 2017 -0700 Committer: Adar Dembo Committed: Mon Oct 2 03:24:03 2017 +0000 ---------------------------------------------------------------------- python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/b92cd9f5/python/requirements.txt ---------------------------------------------------------------------- diff --git a/python/requirements.txt b/python/requirements.txt index 72d6c68..ecd5284 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,5 +1,5 @@ pytest -cython >= 0.21 +cython == 0.26.1 setuptools >= 0.8 six unittest2