summaryrefslogtreecommitdiff
path: root/setupinfo.py
diff options
context:
space:
mode:
Diffstat (limited to 'setupinfo.py')
-rw-r--r--setupinfo.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setupinfo.py b/setupinfo.py
index 169f1a47..ccd2bcd0 100644
--- a/setupinfo.py
+++ b/setupinfo.py
@@ -83,7 +83,8 @@ def find_dependencies(module):
if not CYTHON_INSTALLED:
return []
from Cython.Compiler.Version import version
- if split_version(version) <= (0,9,6,12):
+ # currently, no official Cython release supports this ...
+ if True or split_version(version) <= (0,9,6,12):
return []
package_dir = os.path.join(get_base_dir(), PACKAGE_PATH)