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.
2 parents 915b34f + 6aac9ea commit 3165537Copy full SHA for 3165537
1 file changed
setupext.py
@@ -1443,6 +1443,8 @@ def backend_gtk3agg_internal_check(x):
1443
gi.require_version("Gtk", "3.0")
1444
except ValueError:
1445
return (False, "Requires gtk3 development files to be installed.")
1446
+ except AttributeError:
1447
+ return (False, "pygobject version too old.")
1448
1449
try:
1450
from gi.repository import Gtk, Gdk, GObject
@@ -1506,6 +1508,8 @@ def backend_gtk3cairo_internal_check(x):
1506
1508
1507
1509
1510
1511
1512
1513
1514
1515
0 commit comments