File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -273,7 +273,6 @@ def run_setup(extensions):
273273 for m in cython_candidates ],
274274 exclude_failures = True ))
275275 extensions .extend (cythonize ("cassandra/*.pyx" ))
276- extensions .extend (cythonize ("tests/unit/cython/*.pyx" ))
277276 except Exception :
278277 sys .stderr .write ("Cython is not installed. Not compiling core driver files as extensions (optional)." )
279278
Original file line number Diff line number Diff line change 1414
1515from cassandra .cython_deps import HAVE_CYTHON , HAVE_NUMPY
1616
17+ if HAVE_CYTHON :
18+ import pyximport
19+ pyximport .install ()
20+
1721try :
1822 import unittest2 as unittest
1923except ImportError :
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ deps = nose
1111deps = {[base]deps}
1212 sure
1313 blist
14+ cython
1415 py26: unittest2
1516 py{26,27}: gevent
1617 twisted
You can’t perform that action at this time.
0 commit comments