install.py

changeset 2275
34804fc7e2f9
parent 2217
e80c74f2a25a
child 2302
f29e9405c851
child 2306
0f020f39977b
--- a/install.py	Mon Dec 17 21:29:16 2012 +0100
+++ b/install.py	Wed Dec 19 19:34:35 2012 +0100
@@ -835,8 +835,8 @@
         maj = int(maj)
         min = int(min)
         pat = int(pat)
-        if maj < 4 or (maj == 4 and min < 7):
-            print('Sorry, you must have PyQt 4.7.0 or higher or' \
+        if maj < 4 or (maj == 4 and min < 8):
+            print('Sorry, you must have PyQt 4.8.0 or higher or' \
                   ' a recent snapshot release.')
             exit(4)
         # check for blacklisted versions
@@ -859,8 +859,8 @@
         maj = int(maj)
         min = int(min)
         pat = int(pat)
-        if maj < 2 or (maj == 2 and min < 4):
-            print('Sorry, you must have QScintilla 2.4.0 or higher or' \
+        if maj < 2 or (maj == 2 and min < 6):
+            print('Sorry, you must have QScintilla 2.6.0 or higher or' \
                   ' a recent snapshot release.')
             exit(5)
         # check for blacklisted versions

eric ide

mercurial