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 3165537 commit 8eb36dcCopy full SHA for 8eb36dc
1 file changed
lib/matplotlib/backends/backend_gtk3.py
@@ -10,6 +10,9 @@ def fn_name(): return sys._getframe(1).f_code.co_name
10
11
try:
12
gi.require_version("Gtk", "3.0")
13
+except AttributeError:
14
+ raise ImportError(
15
+ "pygobject version too old -- it must have require_version")
16
except ValueError:
17
raise ImportError(
18
"Gtk3 backend requires the GObject introspection bindings for Gtk 3 "
0 commit comments