Commit d80d8814 authored by Mark Florisson's avatar Mark Florisson

Fix Python 3 compatibility

parent 0939f205
......@@ -19,7 +19,9 @@ from distutils.dir_util import mkpath
from distutils.command import build_ext as _build_ext
from distutils import sysconfig
from Cython.Utils import any
if sys.version_info < (3, 0):
from Cython.Utils import any
extension_name_re = _build_ext.extension_name_re
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment