|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 3 of 7] tools/check: update python version check
# HG changeset patch
# User Olaf Hering <olaf@xxxxxxxxx>
# Date 1317738017 -7200
# Node ID 738452bd9f33343e46a8e05a3f999935ca5e4c2e
# Parent bcd7b8ee7e99dc6348c3132a7248db5829bc53f9
tools/check: update python version check
Python 2.3 is the minimal version according to the README.
Adjust check script.
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
diff -r bcd7b8ee7e99 -r 738452bd9f33 tools/check/check_python
--- a/tools/check/check_python
+++ b/tools/check/check_python
@@ -9,5 +9,5 @@ fi
${PYTHON} -c '
import sys
-sys.exit(sys.version_info[0] < 2 or sys.version_info[1] < 2)
-' || fail "need python version >= 2.2"
+sys.exit(sys.version_info[0] < 2 or sys.version_info[1] < 3)
+' || fail "need python version >= 2.3"
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|