Skip to content

Commit 8c5f252

Browse files
authored
Merge pull request #4443 from finswimmer/issue/4441-capture-output
fix (install-poetry): revert use of capture_output
2 parents 0e3b144 + 45fac46 commit 8c5f252

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

install-poetry.py

Lines changed: 2 additions & 1 deletion
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)