diff --git a/setup.py b/setup.py index 6435840..d4ba49a 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ def build_cython(): pyx for pyx, c in zip(pyx_filenames, c_filenames) if os.path.exists(pyx) and needs_compilation(c, pyx)] if len(nc_pyx_filenames) > 0: - cython_cmd = [sys.executable, '-m', 'cython'] + cython_cmd = [sys.executable, '-m', 'cython', "-3"] cmd = cython_cmd + nc_pyx_filenames env = dict(os.environ) env['PYTHONPATH'] = os.pathsep.join(sys.path)