Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a71c0 commit 5bb6405Copy full SHA for 5bb6405
1 file changed
setupext.py
@@ -1442,6 +1442,8 @@ def backend_gtk3agg_internal_check(x):
1442
gi.require_version("Gtk", "3.0")
1443
except ValueError:
1444
return (False, "Requires gtk3 development files to be installed.")
1445
+ except AttributeError:
1446
+ return (False, "pygobject version too old.")
1447
1448
try:
1449
from gi.repository import Gtk, Gdk, GObject
@@ -1505,6 +1507,8 @@ def backend_gtk3cairo_internal_check(x):
1505
1507
1506
1508
1509
1510
1511
1512
1513
1514
0 commit comments