Skip to content

Commit

Permalink
Update gegl.py example to use 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jplloyd committed Apr 29, 2020
1 parent 656d704 commit 108516e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/gegl.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

from __future__ import absolute_import, division, print_function

# point GI_TYPELIB_PATH to the location of the installed .typelib files

import gi
gi.require_version('MyPaint', '1.5')
gi.require_version('MyPaintGegl', '1.5')
gi.require_version('MyPaint', '1.6')
gi.require_version('MyPaintGegl', '1.6')

from gi.repository import GeglGtk3 as GeglGtk # noqa
from gi.repository import Gegl, Gtk # noqa
Expand Down

0 comments on commit 108516e

Please sign in to comment.