diff options
author | Mats Wichmann <mats@linux.com> | 2020-05-16 18:08:49 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-05-16 18:08:49 (GMT) |
commit | d23ad6d7d3403fb36fbca8eb781dea12a995b715 (patch) | |
tree | fd6fe46cfdad722745e2384a15df00604099c607 /SCons/Script/Main.py | |
parent | 51ac796681c997f6a867f32e12b0ae01dc2b9855 (diff) | |
download | SCons-d23ad6d7d3403fb36fbca8eb781dea12a995b715.zip SCons-d23ad6d7d3403fb36fbca8eb781dea12a995b715.tar.gz SCons-d23ad6d7d3403fb36fbca8eb781dea12a995b715.tar.bz2 |
Bump unsupported/deperecated Py versions
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons/Script/Main.py')
-rw-r--r-- | SCons/Script/Main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/Script/Main.py b/SCons/Script/Main.py index 62cd908..4673d6d 100644 --- a/SCons/Script/Main.py +++ b/SCons/Script/Main.py @@ -10,8 +10,8 @@ some other module. If it's specific to the "scons" script invocation, it goes here. """ -unsupported_python_version = (2, 6, 0) -deprecated_python_version = (2, 7, 0) +unsupported_python_version = (3, 4, 0) +deprecated_python_version = (3, 4, 0) # __COPYRIGHT__ |