Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
QT_VERSION,
MATPLOTLIB_VERSION,
OPENCV_VERSION,
NUMPY_VERSION,
PSUTIL_VERSION,
SCIPY_VERSION,
SKIMAGE_VERSION,
ASTROPY_VERSION,
PIP_VERSION
))
# MKL might not be installed as a separate package. Therefore add its version number only
# if it is available.
try:
import mkl
MKL_VERSION = mkl.__version__
CONTENT += ('''<br>
MKL: {0}'''.format(MKL_VERSION))
except:
pass
msgBox = QtWidgets.QMessageBox()
msgBox.setIcon(QtWidgets.QMessageBox.Information)
msgBox.setWindowIcon(QtGui.QIcon(self.configuration.window_icon))
msgBox.setText(CONTENT)
msgBox.setWindowTitle("About PlanetarySystemStacker")
msgBox.setStandardButtons(QtWidgets.QMessageBox.Ok)
msgBox.exec()