From 5665b61cbf069a7084dddcb91b64540ff1aa8c78 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 24 Nov 2020 18:53:43 +0000 Subject: [PATCH] Double-check this --- cibuildwheel/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index 3ec57195..f7753b87 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -220,7 +220,7 @@ def main() -> None: # Python is buffering by default when running on the CI platforms, giving problems interleaving subprocess call output with unflushed calls to 'print' sys.stdout = Unbuffered(sys.stdout) # type: ignore - sys.stderr = Unbuffered(sys.stderr) # type: ignore + # sys.stderr = Unbuffered(sys.stderr) # type: ignore print_preamble(platform, build_options)