--- a/scripts/install.py Sun Aug 29 12:40:12 2021 +0200 +++ b/scripts/install.py Sun Aug 29 12:40:51 2021 +0200 @@ -1704,14 +1704,12 @@ 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-Charts:", QtCharts.PYQT_CHART_VERSION_STR) with contextlib.suppress(ImportError, AttributeError): - from PyQt6 import QtWebEngine - print("PyQt6-WebEngine:", QtWebEngine.PYQT_WEBENGINE_VERSION_STR) + from PyQt6 import QtWebEngineCore + print("PyQt6-WebEngine:", QtWebEngineCore.PYQT_WEBENGINE_VERSION_STR) print() print("All dependencies ok.")