JGCRI/gcamreader

subprocess.run() doesn't exist prior to python 3.5

Closed this issue · 1 comments

We need an alternate implementation for older python versions. This probably also means wrapping the subprocess calls in an adaptor function.

There is a subprocess extension which is supported in versions: [2.6, 2.7, 3.3] that can be set as a dependency as subprocess.run and imported as from subprocess import run or whatever flavor you prefer. I'll set up a PR for this.