Commit dfc582d2 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 ca585be2
...@@ -191,7 +191,8 @@ class old_build_ext(_build_ext.build_ext): ...@@ -191,7 +191,8 @@ class old_build_ext(_build_ext.build_ext):
for ext in self.extensions: for ext in self.extensions:
ext.sources = self.cython_sources(ext.sources, ext) 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): 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