From a2f9d6821ef7584f9998bd7383601d39f430f6a0 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Sun, 10 Sep 2023 18:31:42 +0100 Subject: [PATCH] Update requirements to allow GooCanvas 2.0 or 3.0 --- GraphView/graphview.gpr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GraphView/graphview.gpr.py b/GraphView/graphview.gpr.py index 8ada7322f..889e9bea9 100644 --- a/GraphView/graphview.gpr.py +++ b/GraphView/graphview.gpr.py @@ -3,7 +3,7 @@ name = _("Graph View"), category = ("Ancestry", _("Charts")), description = _("Dynamic and interactive graph of relations"), - version = '1.0.133', + version = '1.0.134', gramps_target_version = "5.2", status = STABLE, fname = 'graphview.py', @@ -12,6 +12,6 @@ viewclass = 'GraphView', icons = [('gramps-graph', _('Graph View'))], stock_icon = 'gramps-graph', - requires_gi=[('GooCanvas', '3.0')], + requires_gi=[('GooCanvas', '2.0,3.0')], requires_exe=['dot'], )