Closed bskinn closed 5 years ago
Not this:
with open(osp.join(*["src", "stdio_mgr", "version.py"])) as f: exec(f.read())
This instead:
with open(osp.join("src", "stdio_mgr", "version.py")) as f: exec(f.read())
Not this:
This instead: