From patchwork Sat Jun 2 04:54:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,1/3] Hob: lower the limitation for PyGTK Date: Sat, 02 Jun 2012 04:54:36 -0000 From: Shane Wang X-Patchwork-Id: 29129 Message-Id: <5b4c1d6a5c75f186454ed87614e4e9926f5b2d3a.1338612620.git.shane.wang@intel.com> To: bitbake-devel@lists.openembedded.org Signed-off-by: Shane Wang --- bitbake/lib/bb/ui/hob.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py index 97f54ef..9ec32b1 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, 20, 0) or pygtkver < (2, 22, 0): + if gtkver < (2, 20, 0) or pygtkver < (2, 21, 0): sys.exit("%s,\nYou have Gtk+ %s and PyGtk %s." % (requirements, ".".join(map(str, gtkver)), ".".join(map(str, pygtkver))))