mirror of
https://github.com/python-poetry/install.python-poetry.org.git
synced 2024-11-05 21:55:51 -05:00
Merge pull request #4443 from finswimmer/issue/4441-capture-output
fix (install-poetry): revert use of capture_output
This commit is contained in:
commit
8c5f2528f6
1 changed files with 2 additions and 1 deletions
|
@ -584,7 +584,8 @@ class Installer:
|
||||||
|
|
||||||
subprocess.run(
|
subprocess.run(
|
||||||
[str(python), "-m", "pip", "install", specification],
|
[str(python), "-m", "pip", "install", specification],
|
||||||
capture_output=True,
|
stdout=subprocess.PIPE,
|
||||||
|
stderr=subprocess.STDOUT,
|
||||||
check=True,
|
check=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue