summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2009-09-06 02:24:38 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2009-09-06 02:24:38 (GMT)
commit7993461430b56b88522513967e37eefb858b7753 (patch)
treebb5aa8d2b60dffe4c2da40e175e9529632db8ecf /src
parente0b6e92521f826c84041b6de909e093fd92e1a64 (diff)
downloadSCons-7993461430b56b88522513967e37eefb858b7753.zip
SCons-7993461430b56b88522513967e37eefb858b7753.tar.gz
SCons-7993461430b56b88522513967e37eefb858b7753.tar.bz2
Bump minimum version of python for 1.3 to 2.4
Diffstat (limited to 'src')
-rw-r--r--src/engine/SCons/Script/Main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py
index 21fdc24..d2f672a 100644
--- a/src/engine/SCons/Script/Main.py
+++ b/src/engine/SCons/Script/Main.py
@@ -431,7 +431,7 @@ def python_version_unsupported(version=sys.version_info):
return version < (1, 5, 2)
def python_version_deprecated(version=sys.version_info):
- return version < (2, 2, 0)
+ return version < (2, 4, 0)
# Global variables
@@ -959,7 +959,7 @@ def _main(parser):
# warning about deprecated Python versions--delayed until here
# in case they disabled the warning in the SConscript files.
if python_version_deprecated():
- msg = "Support for pre-2.2 Python (%s) is deprecated.\n" + \
+ msg = "Support for pre-2.4 Python (%s) is deprecated.\n" + \
" If this will cause hardship, contact dev@scons.tigris.org."
SCons.Warnings.warn(SCons.Warnings.PythonVersionWarning,
msg % python_version_string())