Route warnings and error messages to stderr, not stdout.

This commit is contained in:
Joe Rickerby
2021-01-08 17:25:07 +00:00
parent a99726f477
commit dbb6d80a72
2 changed files with 5 additions and 16 deletions
+1 -4
View File
@@ -37,10 +37,7 @@ def cibuildwheel_get_build_identifiers(project_path, env=None):
env=env,
)
lines = cmd_output.strip().split('\n')
# ignore warning lines in output
return [l for l in lines if l != '' and not l.startswith('Warning ')]
return cmd_output.strip().split('\n')
def cibuildwheel_run(project_path, package_dir='.', env=None, add_env=None, output_dir=None):