Our minimum required Python version 3.6.12 does not support capture_output
as a subprocess.run argument; this was added in python 3.7.
We can emulate it by setting both stdout and stderr to subprocess.PIPE
Our minimum required Python version 3.6.12 does not support capture_output
as a subprocess.run argument; this was added in python 3.7.
We can emulate it by setting both stdout and stderr to subprocess.PIPE
Our required Python version 3.6.12 does not support `capture_output` as
a subprocess.run argument; this was added in python 3.7.
We can emulate it by setting stdout and stderr to subprocess.PIPE
Concept ACK
Python 3.6: https://docs.python.org/3.6/library/subprocess.html#subprocess.run
Python 3.7 (contains capture_output
): https://docs.python.org/3.6/library/subprocess.html#subprocess.run