python: sequential make install :( (#35557)

This commit is contained in:
Harmen Stoppels 2023-03-30 13:16:11 +02:00 committed by GitHub
parent a185343493
commit 054cbe84de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -590,7 +590,8 @@ def install(self, spec, prefix):
if sys.platform == "win32":
self.win_installer(prefix)
else:
make(*self.install_targets)
# See https://github.com/python/cpython/issues/102007
make(*self.install_targets, parallel=False)
@run_after("install")
def filter_compilers(self):