Skip to content

Commit e180aab

Browse files
authored
Merge pull request #4443 from finswimmer/issue/4441-capture-output
fix (install-poetry): revert use of capture_output
2 parents 893fe1b + 9e17159 commit e180aab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

install-poetry.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,8 @@ def install_poetry(self, version: str, env_path: Path) -> None:
584584

585585
subprocess.run(
586586
[str(python), "-m", "pip", "install", specification],
587-
capture_output=True,
587+
stdout=subprocess.PIPE,
588+
stderr=subprocess.STDOUT,
588589
check=True,
589590
)
590591

0 commit comments

Comments
 (0)