gui: require pygi version 3.30

This was the one that introduced the Gtk.Template class that we use. And
better to have a meaningful exit than a crash.

Fixes #197

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
pull/201/head
Peter Hutterer 2019-08-27 13:40:07 +10:00
parent e6ea60d6c1
commit f24967ad12
1 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,13 @@ import sys
import os
from pathlib import Path
try:
# 3.30 is the first one with Gtk.Template
gi.check_version('3.30') # NOQA
except ValueError as e:
print(e, file=sys.stderr)
sys.exit(1)
gi.require_version('Gio', '2.0') # NOQA
gi.require_version('Gtk', '3.0') # NOQA
from gi.repository import Gio, Gtk, Gdk