1
0
Fork 0
mirror of https://github.com/python-poetry/install.python-poetry.org.git synced 2024-09-13 13:17:11 -04:00

Merge pull request #4443 from finswimmer/issue/4441-capture-output

fix (install-poetry): revert use of capture_output
This commit is contained in:
Sébastien Eustace 2021-08-26 18:13:03 +02:00 committed by GitHub
commit 8c5f2528f6

View file

@ -584,7 +584,8 @@ class Installer:
subprocess.run(
[str(python), "-m", "pip", "install", specification],
capture_output=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
check=True,
)