From c108bc7572a7e065a1a639d702661e363bb53112 Mon Sep 17 00:00:00 2001 From: Windell Oskay Date: Tue, 31 Aug 2021 13:10:25 -0700 Subject: [PATCH] Backport __version__ attribute Issue #409 *pseudo-cherry-pick style* --- inkex/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inkex/__init__.py b/inkex/__init__.py index 841dc393..f09a3acb 100644 --- a/inkex/__init__.py +++ b/inkex/__init__.py @@ -7,6 +7,8 @@ This provides the basis from which you can develop your inkscape extension. # pylint: disable=wildcard-import +__version__ = "1.1.0" # Version number for inkex; may differ from Inkscape version. + import sys MIN_VERSION = (3, 6) if sys.version_info < MIN_VERSION: -- GitLab