You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by ad...@apache.org on 2017/09/27 21:01:38 UTC

kudu git commit: python: pin to cython 0.26.1

Repository: kudu
Updated Branches:
  refs/heads/master bab96a2b2 -> 36f4259f4


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 <jd...@apache.org>
Tested-by: Kudu Jenkins


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/36f4259f
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/36f4259f
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/36f4259f

Branch: refs/heads/master
Commit: 36f4259f425d2e756153863deb83ca40478331cd
Parents: bab96a2
Author: Adar Dembo <ad...@cloudera.com>
Authored: Wed Sep 27 13:28:54 2017 -0700
Committer: Adar Dembo <ad...@cloudera.com>
Committed: Wed Sep 27 20:59:59 2017 +0000

----------------------------------------------------------------------
 python/requirements.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/36f4259f/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