diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 19:29:56 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:32 +0100 |
commit | 316ab4bb2bd76f788b5aa7ee6e0326551b56e267 (patch) | |
tree | 13ad24b1b64128fb8a6a333f074b76ab6a015a7e | |
parent | 350c3126e130b1f6d22c6b5061a3feacc05025fc (diff) | |
download | openembedded-core-316ab4bb2bd76f788b5aa7ee6e0326551b56e267.tar.gz openembedded-core-316ab4bb2bd76f788b5aa7ee6e0326551b56e267.tar.bz2 openembedded-core-316ab4bb2bd76f788b5aa7ee6e0326551b56e267.zip |
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>
-rwxr-xr-x | bitbake/bin/bitbake | 4 |
1 files changed, 2 insertions, 2 deletions
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) #============================================================================# |