|
9 | 9 | # L. CAPOCCHI (capocchi@univ-corse.fr) |
10 | 10 | # SPE Lab - SISU Group - University of Corsica |
11 | 11 | # -------------------------------- |
12 | | -# Version 4.0 last modified: 03/11/25 |
| 12 | +# Version 5.1.0 last modified: 03/11/25 |
13 | 13 | ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## |
14 | 14 | # |
15 | 15 | # GENERAL NOTES AND REMARKS: |
|
56 | 56 | if sys.version_info[0] < 3: |
57 | 57 | raise Exception("Must be using Python 3") |
58 | 58 |
|
59 | | -__authors__ = "Laurent Capocchi <capocchi@univ-corse.fr>, <santucci@univ-corse.fr>" |
60 | | -__date__ = str(datetime.datetime.now()) |
61 | | -__version__ = '5.1' |
62 | | -__docformat__ = 'epytext' |
63 | | -__min_wx_version__ = '4.0' |
64 | | - |
65 | 59 | ################################################################ |
66 | 60 | ### Loading wx python library |
67 | 61 | ################################################################ |
|
142 | 136 | from Reporter import ExceptionHook |
143 | 137 | from PreferencesGUI import PreferencesGUI |
144 | 138 | from PluginManager import PluginManager |
145 | | -from Utilities import GetUserConfigDir, install, install_and_import, updatePiPPackages, load_and_resize_image, updateFromGitRepo, updateFromGitArchive, NotificationMessage, getTopLevelWindow |
| 139 | +from Utilities import GetUserConfigDir, install, install_and_import, updatePiPPackages, load_and_resize_image, updateFromGitRepo, updateFromGitArchive, NotificationMessage, getTopLevelWindow, get_version |
146 | 140 | from Decorators import redirectStdout, BuzyCursorNotification, ProgressNotification, cond_decorator |
147 | 141 | from DetachedFrame import DetachedFrame |
148 | 142 | from LibraryTree import LibraryTree |
|
156 | 150 | from XMLModule import getDiagramFromXMLSES |
157 | 151 | from StandaloneGUI import StandaloneGUI |
158 | 152 |
|
| 153 | +__authors__ = "Laurent Capocchi <capocchi@univ-corse.fr>, <santucci@univ-corse.fr>" |
| 154 | +__date__ = str(datetime.datetime.now()) |
| 155 | +__version__ = get_version() |
| 156 | +__docformat__ = 'epytext' |
| 157 | +__min_wx_version__ = '4.0' |
| 158 | + |
159 | 159 | ### http://comments.gmane.org/gmane.comp.python.wxpython/98744 |
160 | 160 | wx.Log.SetLogLevel(0) |
161 | 161 |
|
|
0 commit comments