From b137e69510a4f87c225287a11e1ecf2daa3d158e Mon Sep 17 00:00:00 2001 From: Paweł Jastrzębski Date: Sun, 25 May 2014 07:29:03 +0200 Subject: Dependency tweak --- kcc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kcc.py') 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 -- cgit 1.4.1