Bump minimum python version check to 2.6.

(Bitbake rev: 85c000cc7db47cfd489cf282c58db2dab0d87908)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson 2010-04-09 19:29:56 -07:00 committed by Richard Purdie
parent 350c3126e1
commit 316ab4bb2b
1 changed files with 2 additions and 2 deletions

View File

@ -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)
#============================================================================#