version_check.py should inform users that we don't support Python 2.5 anymore
authorabarth@webkit.org <abarth@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 9 Feb 2012 00:46:10 +0000 (00:46 +0000)
committerabarth@webkit.org <abarth@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 9 Feb 2012 00:46:10 +0000 (00:46 +0000)
https://bugs.webkit.org/show_bug.cgi?id=78179

Reviewed by Eric Seidel.

We don't support Python 2.5 anymore.

* Scripts/webkitpy/common/version_check.py:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@107155 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/ChangeLog
Tools/Scripts/webkitpy/common/version_check.py

index 65ce677..6f4bba7 100644 (file)
@@ -1,5 +1,16 @@
 2012-02-08  Adam Barth  <abarth@webkit.org>
 
+        version_check.py should inform users that we don't support Python 2.5 anymore
+        https://bugs.webkit.org/show_bug.cgi?id=78179
+
+        Reviewed by Eric Seidel.
+
+        We don't support Python 2.5 anymore.
+
+        * Scripts/webkitpy/common/version_check.py:
+
+2012-02-08  Adam Barth  <abarth@webkit.org>
+
         test_configuration.py shouldn't re-implement itertools
         https://bugs.webkit.org/show_bug.cgi?id=78178
 
index 290623d..6acc9b4 100644 (file)
@@ -29,6 +29,6 @@
 
 import sys
 
-if sys.version < '2.5' or sys.version >= '2.8':
-    print >> sys.stderr, "Unsupported Python version: WebKit only supports 2.5.x - 2.7.x, and you're running %s." % sys.version.split()[0]
+if sys.version < '2.6' or sys.version >= '2.8':
+    print >> sys.stderr, "Unsupported Python version: WebKit only supports 2.6.x - 2.7.x, and you're running %s." % sys.version.split()[0]
     sys.exit(1)