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/10/02 03:24:20 UTC

kudu git commit: python: pin to cython 0.26.1

Repository: kudu
Updated Branches:
  refs/heads/branch-1.3.x a3aacf80e -> d359e2819


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
(cherry picked from commit 36f4259f425d2e756153863deb83ca40478331cd)
Reviewed-on: http://gerrit.cloudera.org:8080/8176
Reviewed-by: Todd Lipcon <to...@apache.org>


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

Branch: refs/heads/branch-1.3.x
Commit: d359e2819a8cc41b0f99ab9dab93cd88bdf6c099
Parents: a3aacf8
Author: Adar Dembo <ad...@cloudera.com>
Authored: Wed Sep 27 13:28:54 2017 -0700
Committer: Adar Dembo <ad...@cloudera.com>
Committed: Mon Oct 2 03:24:01 2017 +0000

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


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