From 5b5078e5e9b5b58c0b03fc0077a2b74af3895a0e Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Thu, 31 Dec 2020 15:45:02 +0000 Subject: [PATCH] Copy edit of --archs help text to make 'auto' clearer --- cibuildwheel/__main__.py | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index 99e2e0dd..5f48070f 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -69,18 +69,16 @@ def main() -> None: Python. Default: auto. ''') - parser.add_argument( - '--archs', - default=None, - help=''' - Comma-separated list of CPU architectures to build for. - If unspecified, builds the architectures natively supported - on this machine. Set this option to build an architecture - via emulation, for example, using binfmt_misc and qemu. - Default: auto - Choices: auto, {} - '''.format(", ".join(a.name for a in Architecture)), - ) + parser.add_argument('--archs', + default=None, + help=''' + Comma-separated list of CPU architectures to build for. + When set to 'auto', builds the architectures natively supported + on this machine. Set this option to build an architecture + via emulation, for example, using binfmt_misc and QEMU. + Default: auto. + Choices: auto, {} + '''.format(", ".join(a.name for a in Architecture))) parser.add_argument('--output-dir', default=os.environ.get('CIBW_OUTPUT_DIR', 'wheelhouse'), help='Destination folder for the wheels.')