scripts/install.py

changeset 7329
72f3c9fdefeb
parent 7302
875a9a29c38f
child 7333
8479201bdf7b
--- a/scripts/install.py	Sat Nov 02 19:24:46 2019 +0100
+++ b/scripts/install.py	Mon Nov 04 19:09:08 2019 +0100
@@ -1542,6 +1542,17 @@
                 print('Please install another version.')
                 exit(5)
     
+    # print version info for additional modules
+    try:
+        print("PyQtChart:", QtChart.PYQT_CHART_VERSION_STR)
+    except (NameError, AttributeError):
+        pass
+    try:
+        from PyQt5 import QtWebEngine
+        print("PyQtWebEngine.", QtWebEngine.PYQT_WEBENGINE_VERSION_STR)
+    except (ImportError, AttributeError):
+        pass
+    
     print("All dependencies ok.")
     print()
 

eric ide

mercurial