scripts/install.py

branch
eric7
changeset 8343
242d5dae2937
parent 8339
75908476226e
child 8354
12ebd3934fef
diff -r 0613a64f1b64 -r 242d5dae2937 scripts/install.py
--- a/scripts/install.py	Fri May 21 17:45:47 2021 +0200
+++ b/scripts/install.py	Fri May 21 17:48:17 2021 +0200
@@ -1502,9 +1502,10 @@
         else:
             pipInstall(
                 "PyQt6-Charts>=6.1.0",
-                "Optional 'PyQtChart' could not be detected.\n"
+                "Optional 'PyQt6-Charts' could not be detected.\n"
                 "Error: {0}".format(msg)
             )
+    print("Found PyQt6-Charts")
     
     try:
         from PyQt6 import Qsci      # __IGNORE_WARNING__
@@ -1714,8 +1715,10 @@
                 exit(5)
     
     # print version info for additional modules
+    # TODO: add info about QtSerialPort once PyQt 6.2.0/Qt 6.2.0 is released
+    #       (only if that is a separate package)
     with contextlib.suppress(NameError, AttributeError):
-        print("PyQt6-Chart:", QtCharts.PYQT_CHART_VERSION_STR)
+        print("PyQt6-Charts:", QtCharts.PYQT_CHART_VERSION_STR)
     
     with contextlib.suppress(ImportError, AttributeError):
         from PyQt6 import QtWebEngine

eric ide

mercurial