bitbake-dev: Note that python 2.6 is needed

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2009-07-23 14:37:06 +01:00
parent 94fe172d52
commit a6ca63d77a
1 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,10 @@ from bb.ui import uievent
__version__ = "1.9.0"
if sys.hexversion < 0x020600F0:
print "Sorry, python 2.6 or later is required for this version of bitbake"
sys.exit(1)
#============================================================================#
# BBOptions
#============================================================================#