diff options
author | Paweł Jastrzębski <pawelj@vulturis.eu> | 2014-05-25 07:29:03 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@vulturis.eu> | 2014-05-25 07:29:03 +0200 |
commit | b137e69510a4f87c225287a11e1ecf2daa3d158e (patch) | |
tree | d493c1791573ee121b65c4d54aa8de700f1f38b0 /kcc.py | |
parent | Miscellaneous processing tweaks (diff) | |
download | kcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.tar.gz kcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.tar.bz2 kcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.zip |
Dependency tweak
Diffstat (limited to 'kcc.py')
-rwxr-xr-x | kcc.py | 6 |
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 |