1
0
mirror of https://github.com/ciromattia/kcc synced 2026-07-30 16:43:17 +00:00

edit shared

This commit is contained in:
Alexander Xu
2023-06-30 09:37:03 -07:00
parent f4e45e6052
commit 3f2365c677
+4 -4
View File
@@ -100,11 +100,11 @@ def dependencyCheck(level):
missing = [] missing = []
if level > 2: if level > 2:
try: try:
from PyQt6.QtCore import qVersion as qtVersion from PySide6.QtCore import qVersion as qtVersion
if StrictVersion('5.6.0') > StrictVersion(qtVersion()): if StrictVersion('6.5.1') > StrictVersion(qtVersion()):
missing.append('PyQt 5.6.0+') missing.append('PySide 6.5.1+')
except ImportError: except ImportError:
missing.append('PyQt 5.6.0+') missing.append('PySide 6.5.1+')
try: try:
import raven import raven
except ImportError: except ImportError: