diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index 72e2434b..dcd9d43e 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -432,6 +432,10 @@ def print_preamble(platform: str, options: Options, identifiers: Sequence[str]) msg = "\n".join(error_list) raise errors.ConfigurationError(msg) + n = len(identifiers) + print(f"{n} build{'s' if n != 1 else ''} selected:") + print(", ".join(identifiers)) + print() print("Here we go!\n")