Commit edf0ac17 authored by Jason Madden's avatar Jason Madden

Disable parallel extension builds; it can break compiling

parent 4a84fd2e
......@@ -249,7 +249,9 @@ class ConfiguringBuildExt(build_ext):
cls.gevent_pre_run_actions += (action,)
def finalize_options(self):
self.parallel = True # pylint: disable=attribute-defined-outside-init
# Setting parallel to true can break builds when we need to configure
# embedded libraries, which we do by changing directories. If that
# happens while we're compiling, we may not be able to find source code.
build_ext.finalize_options(self)
def gevent_prepare(self, ext):
......
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