We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d1045d commit f5d6751Copy full SHA for f5d6751
src/pyproject_hooks/_impl.py
@@ -95,7 +95,7 @@ def quiet_subprocess_runner(
95
) -> None:
96
"""Call the subprocess while suppressing output.
97
98
- This uses :func:`subprocess.run` with `PIPE` under the hood.
+ This uses :func:`subprocess.run` with `stdout=PIPE, stderr=STDOUT` under the hood.
99
"""
100
env = os.environ.copy()
101
if extra_environ:
@@ -108,7 +108,6 @@ def quiet_subprocess_runner(
108
stdout=subprocess.PIPE,
109
stderr=subprocess.STDOUT,
110
check=True,
111
- text=True,
112
)
113
114
0 commit comments