Only require Cython if using a developer version

This commit is contained in:
Thomas Robitaille
2014-01-10 13:45:40 +01:00
parent 82ff8ddf8c
commit 5abc13d3e2
Regular → Executable
+5 -1
View File
@@ -21,10 +21,14 @@ VERSION = '0.10dev'
PYTHON_VERSION = (2, 5)
DEPENDENCIES = {
'numpy': (1, 6),
'Cython': (0, 17),
'six': (1, 3),
}
# Only require Cython if we have a developer checkout
if VERSION.endswith('dev'):
DEPENDENCIES['Cython'] = (0, 17)
import os
import sys