changelog shortlog tags manifest raw

changeset: [TOOLS] Enhance Python version check for v2.5.

changeset 11458: b7f763a8a7ef
parent 11457:1d7c72e53d3d
child 11459:98fcd017c5f3
author: kaf24@firebug.cl.cam.ac.uk
date: Wed Sep 13 13:54:59 2006 +0100 (3 years ago)
files: tools/check/check_python
description: [TOOLS] Enhance Python version check for v2.5.
From: Charles Coffing <ccoffing@novell.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
--- a/tools/check/check_python	Wed Sep 13 13:52:03 2006 +0100
+++ b/tools/check/check_python	Wed Sep 13 13:54:59 2006 +0100
@@ -7,4 +7,4 @@ function error {
     exit 1
 }
 
-python -V 2>&1 | cut -d ' ' -f 2 | grep -q -E '^2.2|^2.3|^2.4' || error
+python -V 2>&1 | cut -d ' ' -f 2 | grep -q '^2.[2345]' || error