From 810b61e78f873cc973407c4010fc0579e712b8a2 Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 2 Oct 2019 18:11:35 +0300 Subject: [PATCH] Reinstate and simplify parallel auto-detection --- setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup.py b/setup.py index c3e0dfc9f..c72e02966 100755 --- a/setup.py +++ b/setup.py @@ -326,6 +326,15 @@ class pil_build_ext(build_ext): if self.debug: global DEBUG DEBUG = True + if not self.parallel: + # If --parallel (or -j) wasn't specified, we want to reproduce the same + # behavior as before, that is, auto-detect the number of jobs. + try: + self.parallel = int( + os.environ.get("MAX_CONCURRENCY", min(4, os.cpu_count())) + ) + except TypeError: + self.parallel = None for x in self.feature: if getattr(self, "disable_%s" % x): setattr(self.feature, x, False)