about summary refs log tree commit diff
path: root/kcc.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@vulturis.eu>2014-05-25 07:29:03 +0200
committerPaweł Jastrzębski <pawelj@vulturis.eu>2014-05-25 07:29:03 +0200
commitb137e69510a4f87c225287a11e1ecf2daa3d158e (patch)
treed493c1791573ee121b65c4d54aa8de700f1f38b0 /kcc.py
parentMiscellaneous processing tweaks (diff)
downloadkcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.tar.gz
kcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.tar.bz2
kcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.zip
Dependency tweak
Diffstat (limited to 'kcc.py')
-rwxr-xr-xkcc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/kcc.py b/kcc.py
index ffc0fbb..7cac49c 100755
--- a/kcc.py
+++ b/kcc.py
@@ -33,10 +33,10 @@ missing = []
 try:
     # noinspection PyUnresolvedReferences
     from PyQt5 import QtCore, QtNetwork, QtWidgets
-    if tuple(map(int, ('5.2.1'.split(".")))) > tuple(map(int, (QtCore.qVersion().split(".")))):
-        missing.append('PyQt5 5.2.1+')
+    if tuple(map(int, ('5.2.0'.split(".")))) > tuple(map(int, (QtCore.qVersion().split(".")))):
+        missing.append('PyQt5 5.2.0+')
 except ImportError:
-    missing.append('PyQt5 5.2.1+')
+    missing.append('PyQt5 5.2.0+')
 try:
     # noinspection PyUnresolvedReferences
     import psutil