Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bindings/python/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ def compile_target(target_name, target_settings, WHEELS_FOLDER, settings):
# Compile all the targets
################################################################################
if args.sequential:
for args in settings["targets"].items():
compile_target(*args, WHEELS_FOLDER, settings)
for args_compile in settings["targets"].items():
compile_target(*args_compile, WHEELS_FOLDER, settings)
else:
with mp.Pool(mp.cpu_count()) as pool:
list(pool.imap(
Expand Down