From 211b194bee365b19aad10a487b20b48b17eb5c19 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 6 Feb 2018 05:46:57 -0500 Subject: Revert "Prefer new_build_ext for Cython builds as recommended by Cython project. Fixes #1270." Reopens #1270. Fixes #1271. This reverts commit 038baa16016503708cf3bddcaf2f9b8d541c17bc. --- setuptools/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command') 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') -- cgit v1.2.1