about summary refs log tree commit diff
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
parentMiscellaneous processing tweaks (diff)
downloadkcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.tar.gz
kcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.tar.bz2
kcc-b137e69510a4f87c225287a11e1ecf2daa3d158e.zip
Dependency tweak
-rw-r--r--README.md2
-rwxr-xr-xkcc.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index cd22c95..4ded835 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ You can find the latest released binary at the following links:
 
 ### For running from source:
 - Python 3.3+
-- [PyQt5](http://www.riverbankcomputing.co.uk/software/pyqt/download5) 5.2.1+
+- [PyQt5](http://www.riverbankcomputing.co.uk/software/pyqt/download5) 5.2.0+
 - [Pillow](http://pypi.python.org/pypi/Pillow/) 2.3.0+
 - [psutil](https://pypi.python.org/pypi/psutil) 2.0+
 - [python-slugify](http://pypi.python.org/pypi/python-slugify)
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