File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 88from .pkg_info import __version__
99
1010__doc__ = """
11- The ``NodeGraphQt.constants`` namespace contains variables used throughout
12- the whole `` NodeGraphQt`` library.
11+ | The ``NodeGraphQt.constants`` namespace contains variables used throughout
12+ the whole NodeGraphQt library.
1313"""
1414
1515# =================================== GLOBAL ===================================
1616
17- #: Current version of the NodeGraphQt framework .
17+ #: current version.
1818VERSION = __version__
19+ #: major version.
20+ VERSION_MAJOR = int (VERSION .split ('.' )[0 ])
21+ #: minor version.
22+ VERSION_MINOR = int (VERSION .split ('.' )[1 ])
23+ #: patch version.
24+ VERSION_PATCH = int (VERSION .split ('.' )[2 ])
1925
2026# ==================================== PIPE ====================================
2127
You can’t perform that action at this time.
0 commit comments