]> code.ossystems Code Review - openembedded-core.git/commitdiff
Bump minimum python version check to 2.6.
authorChris Larson <chris_larson@mentor.com>
Sat, 10 Apr 2010 02:29:56 +0000 (19:29 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 2 Jul 2010 14:41:32 +0000 (15:41 +0100)
(Bitbake rev: 85c000cc7db47cfd489cf282c58db2dab0d87908)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/bin/bitbake

index 8fdb6540a215a1f76ada1e617621050358b9b85d..b577e53895f47481b4a25d64ad802e37c435829d 100755 (executable)
@@ -36,8 +36,8 @@ from bb.server import none
 
 __version__ = "1.9.0"
 
-if sys.hexversion < 0x020500F0:
-    print "Sorry, python 2.5 or later is required for this version of bitbake"
+if sys.hexversion < 0x020600F0:
+    print "Sorry, python 2.6 or later is required for this version of bitbake"
     sys.exit(1)
 
 #============================================================================#