SCons: Bump minimum SCons & Python versions

SCons: 3.1.2 → 4.0
Python: 3.6 → 3.8
This commit is contained in:
Thaddeus Crews
2024-11-12 10:21:12 -06:00
parent caff0ff591
commit 66fe2c8b44
5 changed files with 8 additions and 19 deletions

View File

@@ -409,8 +409,7 @@ def use_windows_spawn_fix(self, platform=None):
"shell": False,
"env": env,
}
if sys.version_info >= (3, 7, 0):
popen_args["text"] = True
popen_args["text"] = True
proc = subprocess.Popen(cmdline, **popen_args)
_, err = proc.communicate()
rv = proc.wait()