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 C539D200BA1 for ; Mon, 12 Sep 2016 07:40:18 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C3DD0160AC7; Mon, 12 Sep 2016 05:40:18 +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 4302C160AD6 for ; Mon, 12 Sep 2016 07:40:18 +0200 (CEST) Received: (qmail 32781 invoked by uid 500); 12 Sep 2016 05:40:17 -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 32708 invoked by uid 99); 12 Sep 2016 05:40:17 -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, 12 Sep 2016 05:40:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 48505E08AD; Mon, 12 Sep 2016 05:40:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mpercy@apache.org To: commits@kudu.apache.org Date: Mon, 12 Sep 2016 05:40:19 -0000 Message-Id: <6710466929734f2a87b9b677f9830733@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [3/5] kudu git commit: python: update cython version check in setup.py archived-at: Mon, 12 Sep 2016 05:40:18 -0000 python: update cython version check in setup.py This updates the required version to match requirements.txt Change-Id: Id44a716a6917bfdc37a96ba4759cc007805285a5 Reviewed-on: http://gerrit.cloudera.org:8080/4368 Reviewed-by: Jordan Birdsell Tested-by: Kudu Jenkins Reviewed-by: David Ribeiro Alves Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/cf1bd0dc Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/cf1bd0dc Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/cf1bd0dc Branch: refs/heads/master Commit: cf1bd0dc90940030330f6803e934da805a2eb1fb Parents: 328e117 Author: Todd Lipcon Authored: Sat Sep 10 16:36:15 2016 -0700 Committer: Todd Lipcon Committed: Sun Sep 11 23:12:53 2016 +0000 ---------------------------------------------------------------------- python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/cf1bd0dc/python/setup.py ---------------------------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index 76725c7..82f0383 100644 --- a/python/setup.py +++ b/python/setup.py @@ -28,8 +28,8 @@ from distutils.command.clean import clean as _clean from distutils.extension import Extension import os -if Cython.__version__ < '0.19.1': - raise Exception('Please upgrade to Cython 0.19.1 or newer') +if Cython.__version__ < '0.21.0': + raise Exception('Please upgrade to Cython 0.21.0 or newer') MAJOR = 0 MINOR = 3