Change minimum requirement for Qt to 4.6.0.

Tue, 01 Nov 2011 11:04:54 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 01 Nov 2011 11:04:54 +0100
changeset 1410
299cf3b5cda0
parent 1408
45130b24effa
child 1411
f170cd6440d2

Change minimum requirement for Qt to 4.6.0.

install.py file | annotate | diff | comparison | revisions
--- a/install.py	Mon Oct 31 16:28:00 2011 +0100
+++ b/install.py	Tue Nov 01 11:04:54 2011 +0100
@@ -738,8 +738,8 @@
     # check version of Qt
     qtMajor = int(qVersion().split('.')[0])
     qtMinor = int(qVersion().split('.')[1])
-    if qtMajor < 4 or (qtMajor == 4 and qtMinor < 5):
-        print('Sorry, you must have Qt version 4.5.0 or higher.')
+    if qtMajor < 4 or (qtMajor == 4 and qtMinor < 6):
+        print('Sorry, you must have Qt version 4.6.0 or higher.')
         exit(2)
     print("Qt Version: {0}".format(qVersion()))
     

eric ide

mercurial