scripts/install.py

branch
eric7
changeset 11022
95c889f18a21
parent 10998
6d7bddfde5fe
child 11043
8cfceca767e1
--- a/scripts/install.py	Thu Oct 31 10:58:00 2024 +0100
+++ b/scripts/install.py	Thu Oct 31 14:36:11 2024 +0100
@@ -1603,8 +1603,8 @@
         print("\n")
 
     # perform dependency checks
-    if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 14, 0):
-        print("Sorry, you must have Python 3.8.0 or higher, but less 3.14.0.")
+    if sys.version_info < (3, 9, 0) or sys.version_info >= (3, 14, 0):
+        print("Sorry, you must have Python 3.9.0 or higher, but less 3.14.0.")
         print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3])))
         exit(5)
 
@@ -2243,8 +2243,8 @@
     global withPyqt6Tools
     global verbose
 
-    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.")
+    if sys.version_info < (3, 9, 0) or sys.version_info > (3, 99, 99):
+        print("Sorry, eric requires at least Python 3.9 for running.")
         exit(5)
 
     installCwd = os.getcwd()

eric ide

mercurial