Corrected a message in the install script. eric7

Mon, 17 Jun 2024 19:31:54 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 17 Jun 2024 19:31:54 +0200
branch
eric7
changeset 10788
c14f37a9aa74
parent 10786
f27738bc28af
child 10789
d3fa6a6b919e

Corrected a message in the install script.

scripts/install.py file | annotate | diff | comparison | revisions
--- a/scripts/install.py	Fri Jun 14 14:04:01 2024 +0200
+++ b/scripts/install.py	Mon Jun 17 19:31:54 2024 +0200
@@ -1802,8 +1802,8 @@
     qtMajor = int(qVersion().split(".")[0])
     qtMinor = int(qVersion().split(".")[1])
     print("Qt6: {0}".format(qVersion().strip()))
-    if qtMajor == 6 and qtMinor < 1:
-        print("Sorry, you must have Qt version 6.1.0 or better.")
+    if qtMajor == 6 and qtMinor < 2:
+        print("Sorry, you must have Qt version 6.2.0 or better.")
         exit(2)
 
     # check version of sip

eric ide

mercurial