diff options
author | William Deegan <bill@baddogconsulting.com> | 2013-02-22 23:05:22 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2013-02-22 23:05:22 (GMT) |
commit | 69dc14517eefbc92326d88f45002a7ae0ca7b3b7 (patch) | |
tree | dfa7d66b20f3ad251e145206cc5f448c8a3c935d /src | |
parent | 9eb5708331e848fe37b63578ece26b1af278b3f7 (diff) | |
download | SCons-69dc14517eefbc92326d88f45002a7ae0ca7b3b7.zip SCons-69dc14517eefbc92326d88f45002a7ae0ca7b3b7.tar.gz SCons-69dc14517eefbc92326d88f45002a7ae0ca7b3b7.tar.bz2 |
Raised deprecated python version to be anything less than 2.7 to prep for moving the required version to 2.7 after the next major release
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/SCons/Script/Main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py index 2524ab0..e379a39 100644 --- a/src/engine/SCons/Script/Main.py +++ b/src/engine/SCons/Script/Main.py @@ -11,7 +11,7 @@ it goes here. """ unsupported_python_version = (2, 3, 0) -deprecated_python_version = (2, 4, 0) +deprecated_python_version = (2, 7, 0) # __COPYRIGHT__ # |