]> code.ossystems Code Review - openembedded-core.git/commitdiff
Drop an unnecessary second python version check and use the less ugly sys.version_info
authorChris Larson <chris_larson@mentor.com>
Thu, 15 Apr 2010 15:14:53 +0000 (08:14 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 2 Jul 2010 14:41:34 +0000 (15:41 +0100)
(Bitbake rev: 8f4b7b10f8740a41c085beeca5105f15204b0979)

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

index 8db604746842805046dd95ec913607ca19767ba9..a8d6fd9d087d4d9dbdaa232f760f496c16b64415 100755 (executable)
@@ -23,8 +23,8 @@
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 import sys
-if sys.hexversion < 0x020600F0:
-    print "Sorry, python 2.6 or later is required for this version of bitbake"
+if sys.version_info < (2, 6, 0):
+    print "Sorry, python 2.6.0 or later is required for this version of bitbake"
     sys.exit(1)
 
 import os
@@ -92,10 +92,6 @@ warnings.simplefilter("ignore", DeprecationWarning)
 
 def main():
     return_value = 0
-    pythonver = sys.version_info
-    if pythonver[0] < 2 or (pythonver[0] == 2 and pythonver[1] < 5):
-        print "Sorry, bitbake needs python 2.5 or later."
-        sys.exit(1)
 
     parser = optparse.OptionParser(
         version = "BitBake Build Tool Core version %s, %%prog version %s" % (bb.__version__, __version__),