From 3486f0f207ceb50de998d84b67c62c8dfa2795a3 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Mon, 15 May 2023 22:01:04 +0100 Subject: [PATCH] Fix support for Python 3.7 host version --- cibuildwheel/util.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cibuildwheel/util.py b/cibuildwheel/util.py index f10c0ef8..79b8bd95 100644 --- a/cibuildwheel/util.py +++ b/cibuildwheel/util.py @@ -711,7 +711,6 @@ def parse_key_value_string( shlexer = shlex.shlex(key_value_string, posix=True, punctuation_chars=";:") shlexer.commenters = "" - shlexer.whitespace_split = True parts = list(shlexer) # parts now looks like # ['docker', ';', 'create_args',':', '--some-option=value', 'another-option']