We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a84a77 commit be332a4Copy full SHA for be332a4
src/poetry/utils/env/__init__.py
@@ -82,18 +82,21 @@ def build_environment(
82
83
io.overwrite_error(
84
"<b>Preparing</b> build environment with build-system requirements"
85
- f" {', '.join(requires)}"
+ f" {', '.join(requires)}\n"
86
)
87
88
- venv.run_pip(
+ output = venv.run_pip(
89
"install",
90
"--disable-pip-version-check",
91
"--ignore-installed",
92
"--no-input",
93
*poetry.pyproject.build_system.requires,
94
95
96
- if overwrite:
+ if io and io.is_debug() and output:
97
+ io.write_error(output)
98
+
99
+ if not overwrite:
100
assert io is not None
101
io.write_error_line("")
102
0 commit comments