diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 10:21:12 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 11:30:24 -0600 |
commit | 66fe2c8b44f34ea72892fed9594396d33a59f251 (patch) | |
tree | f524cc3d3b482c3df0fda0ce7d6c23b5622afae8 /methods.py | |
parent | caff0ff591ed63234474c46a6fd868661aa8ea01 (diff) | |
download | redot-engine-66fe2c8b44f34ea72892fed9594396d33a59f251.tar.gz |
SCons: Bump minimum SCons & Python versions
SCons: 3.1.2 → 4.0
Python: 3.6 → 3.8
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/methods.py b/methods.py index 64c3839718..1fb6f367b0 100644 --- a/methods.py +++ b/methods.py @@ -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() |