Skip to content

Commit

Permalink
fix (install-poetry): revert use of capture_output
Browse files Browse the repository at this point in the history
  • Loading branch information
finswimmer authored and edvardm committed Nov 24, 2021
1 parent 3f7d5c1 commit 183cb43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install-poetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,8 @@ def install_poetry(self, version: str, env_path: Path) -> None:

subprocess.run(
[str(python), "-m", "pip", "install", specification],
capture_output=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
check=True,
)

Expand Down

0 comments on commit 183cb43

Please sign in to comment.