scripts/install.py

branch
eric7
changeset 10119
64147a7e6393
parent 10118
f93954861747
child 10122
f9b87800ecf2
--- a/scripts/install.py	Thu Jul 20 10:36:23 2023 +0200
+++ b/scripts/install.py	Thu Jul 20 11:00:30 2023 +0200
@@ -1592,8 +1592,8 @@
         print("\n")
 
     # perform dependency checks
-    if sys.version_info < (3, 7, 0) or sys.version_info >= (3, 12, 0):
-        print("Sorry, you must have Python 3.7.0 or higher, but less 3.12.0.")
+    if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 12, 0):
+        print("Sorry, you must have Python 3.8.0 or higher, but less 3.12.0.")
         print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3])))
         exit(5)
 
@@ -2185,8 +2185,8 @@
     global withPyqt6Tools
     global verbose
 
-    if sys.version_info < (3, 7, 0) or sys.version_info > (3, 99, 99):
-        print("Sorry, eric requires at least Python 3.7 for running.")
+    if sys.version_info < (3, 8, 0) or sys.version_info > (3, 99, 99):
+        print("Sorry, eric requires at least Python 3.8 for running.")
         exit(5)
 
     progName = os.path.basename(argv[0])

eric ide

mercurial