Commit 01e00f6c authored by Alphadelta14's avatar Alphadelta14 Committed by Stefan Behnel

Leverage distutil's build_extensions so that --parallel works on Python 3 (GH-3187)

parent be53f123
......@@ -191,7 +191,8 @@ class old_build_ext(_build_ext.build_ext):
for ext in self.extensions:
ext.sources = self.cython_sources(ext.sources, ext)
self.build_extension(ext)
# Call original build_extensions
_build_ext.build_ext.build_extensions(self)
def cython_sources(self, sources, extension):
"""
......
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