Title: [107155] trunk/Tools
Revision
107155
Author
[email protected]
Date
2012-02-08 16:46:10 -0800 (Wed, 08 Feb 2012)

Log Message

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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (107154 => 107155)


--- trunk/Tools/ChangeLog	2012-02-09 00:37:49 UTC (rev 107154)
+++ trunk/Tools/ChangeLog	2012-02-09 00:46:10 UTC (rev 107155)
@@ -1,5 +1,16 @@
 2012-02-08  Adam Barth  <[email protected]>
 
+        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  <[email protected]>
+
         test_configuration.py shouldn't re-implement itertools
         https://bugs.webkit.org/show_bug.cgi?id=78178
 

Modified: trunk/Tools/Scripts/webkitpy/common/version_check.py (107154 => 107155)


--- trunk/Tools/Scripts/webkitpy/common/version_check.py	2012-02-09 00:37:49 UTC (rev 107154)
+++ trunk/Tools/Scripts/webkitpy/common/version_check.py	2012-02-09 00:46:10 UTC (rev 107155)
@@ -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)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to