diff options
-rw-r--r-- | setuptools/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index 01d65f59..ea97b37b 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -14,7 +14,7 @@ from setuptools.extern import six try: # Attempt to use Cython for building extensions, if available - from Cython.Distutils.build_ext import new_build_ext as _build_ext + from Cython.Distutils.build_ext import build_ext as _build_ext # Additionally, assert that the compiler module will load # also. Ref #1229. __import__('Cython.Compiler.Main') |