Skip to content

Commit 2316c93

Browse files
committed
Removed default argument
1 parent b931402 commit 2316c93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from setuptools import Extension, setup
2323
from setuptools.command.build_ext import build_ext
2424

25-
ParallelCompile("MAX_CONCURRENCY", default=0).install()
25+
ParallelCompile("MAX_CONCURRENCY").install()
2626

2727

2828
def get_version() -> str:
@@ -1051,12 +1051,12 @@ def debug_build() -> bool:
10511051
Extension("PIL._imagingmorph", ["src/_imagingmorph.c"]),
10521052
]
10531053

1054+
10541055
# parse configuration from _custom_build/backend.py
10551056
while sys.argv[-1].startswith("--pillow-configuration="):
10561057
_, key, value = sys.argv.pop().split("=", 2)
10571058
configuration.setdefault(key, []).append(value)
10581059

1059-
10601060
try:
10611061
setup(
10621062
cmdclass={"build_ext": pil_build_ext},

0 commit comments

Comments
 (0)