From: Joshua Lock Date: Fri, 13 Apr 2012 23:24:10 +0000 (-0700) Subject: hob: update required pygtk to 2.22.0 and gtk+ to 2.20.0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b4c8c74a45e386f99344cf9799eb5294ad6c9e3e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git hob: update required pygtk to 2.22.0 and gtk+ to 2.20.0 (Bitbake rev: e67ccbbeaecd2d9f3267995c590052c6a3c5b9ce) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py index 6cd95796339..97f54ef4c6a 100755 --- a/bitbake/lib/bb/ui/hob.py +++ b/bitbake/lib/bb/ui/hob.py @@ -30,7 +30,7 @@ try: pygtk.require('2.0') # to be certain we don't have gtk+ 1.x !?! gtkver = gtk.gtk_version pygtkver = gtk.pygtk_version - if gtkver < (2, 18, 0) or pygtkver < (2, 16, 0): + if gtkver < (2, 20, 0) or pygtkver < (2, 22, 0): sys.exit("%s,\nYou have Gtk+ %s and PyGtk %s." % (requirements, ".".join(map(str, gtkver)), ".".join(map(str, pygtkver))))