We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dab427 commit 27c2594Copy full SHA for 27c2594
1 file changed
build_ext.py
@@ -45,6 +45,8 @@
45
46
class BuildExt(build_ext):
47
def build_extensions(self) -> None:
48
+ if self.parallel is None: # type: ignore[has-type, unused-ignore]
49
+ self.parallel = os.cpu_count() or 1
50
try:
51
super().build_extensions()
52
except Exception: # noqa: S110
0 commit comments