You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by mp...@apache.org on 2016/09/12 05:40:19 UTC

[3/5] kudu git commit: python: update cython version check in setup.py

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 <jo...@gmail.com>
Tested-by: Kudu Jenkins
Reviewed-by: David Ribeiro Alves <dr...@apache.org>


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 <to...@apache.org>
Authored: Sat Sep 10 16:36:15 2016 -0700
Committer: Todd Lipcon <to...@apache.org>
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