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 b931402 commit 2316c93Copy full SHA for 2316c93
setup.py
@@ -22,7 +22,7 @@
22
from setuptools import Extension, setup
23
from setuptools.command.build_ext import build_ext
24
25
-ParallelCompile("MAX_CONCURRENCY", default=0).install()
+ParallelCompile("MAX_CONCURRENCY").install()
26
27
28
def get_version() -> str:
@@ -1051,12 +1051,12 @@ def debug_build() -> bool:
1051
Extension("PIL._imagingmorph", ["src/_imagingmorph.c"]),
1052
]
1053
1054
+
1055
# parse configuration from _custom_build/backend.py
1056
while sys.argv[-1].startswith("--pillow-configuration="):
1057
_, key, value = sys.argv.pop().split("=", 2)
1058
configuration.setdefault(key, []).append(value)
1059
-
1060
try:
1061
setup(
1062
cmdclass={"build_ext": pil_build_ext},
0 commit comments