1
0
mirror of https://github.com/ciromattia/kcc synced 2026-04-06 09:05:42 +00:00

edit shared

This commit is contained in:
Alexander Xu
2023-06-30 09:37:03 -07:00
parent f4e45e6052
commit 3f2365c677

View File

@@ -100,11 +100,11 @@ def dependencyCheck(level):
missing = []
if level > 2:
try:
from PyQt6.QtCore import qVersion as qtVersion
if StrictVersion('5.6.0') > StrictVersion(qtVersion()):
missing.append('PyQt 5.6.0+')
from PySide6.QtCore import qVersion as qtVersion
if StrictVersion('6.5.1') > StrictVersion(qtVersion()):
missing.append('PySide 6.5.1+')
except ImportError:
missing.append('PyQt 5.6.0+')
missing.append('PySide 6.5.1+')
try:
import raven
except ImportError: