diff --git a/engine/start.py b/engine/start.py index db20f3e..627abf5 100644 --- a/engine/start.py +++ b/engine/start.py @@ -59,7 +59,6 @@ else: logger = logging.getLogger(__name__) logger.info("import") - """set up python search path before the program starts and cbox gets imported. We need to be earliest, so let's put it here. This is influence during compiling by creating a temporary file "compiledprefix.py". @@ -71,6 +70,9 @@ Nuitka complies that in, when make is finished we delete it. import sys import os import os.path + +logger.info(f"Python Version {sys.version}") + try: from compiledprefix import prefix compiledVersion = True diff --git a/qtgui/mainwindow.py b/qtgui/mainwindow.py index d8c0376..bae553f 100644 --- a/qtgui/mainwindow.py +++ b/qtgui/mainwindow.py @@ -27,6 +27,7 @@ from sys import exit as sysexit #Third Party from PyQt5 import QtCore, QtGui, QtWidgets +logger.info(f"PyQt Version: {QtCore.PYQT_VERSION_STR}") #Engine from engine.config import METADATA #includes METADATA only. No other environmental setup is executed.