From: Chris Larson Date: Sat, 10 Apr 2010 02:29:56 +0000 (-0700) Subject: Bump minimum python version check to 2.6. X-Git-Tag: 2011-1~5542 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=316ab4bb2bd76f788b5aa7ee6e0326551b56e267;p=openembedded-core.git Bump minimum python version check to 2.6. (Bitbake rev: 85c000cc7db47cfd489cf282c58db2dab0d87908) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 8fdb6540a2..b577e53895 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -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) #============================================================================#