From 9e17159b930fcd1f0cc5590edb1a6dc02413550c Mon Sep 17 00:00:00 2001 From: finswimmer Date: Thu, 26 Aug 2021 17:55:48 +0200 Subject: [PATCH] fix (install-poetry): revert use of capture_output --- install-poetry.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-poetry.py b/install-poetry.py index 7c9796b8959..9980ff53cd7 100644 --- a/install-poetry.py +++ b/install-poetry.py @@ -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, )