From 152483bcb470979aaedc71ae7b1d182f6c690efb Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 1 Nov 2020 15:16:28 +0000 Subject: [PATCH] Try putting all build output on stdout --- cibuildwheel/docker_container.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cibuildwheel/docker_container.py b/cibuildwheel/docker_container.py index a58eb750..7511f9e0 100644 --- a/cibuildwheel/docker_container.py +++ b/cibuildwheel/docker_container.py @@ -57,6 +57,9 @@ class DockerContainer: ], stdin=subprocess.PIPE, stdout=subprocess.PIPE, + # output the subcommand stderr to our stdout. Avoids ordering + # problems between log messages on stderr and stdout + stderr=sys.stdout, ) assert self.process.stdin and self.process.stdout