scripts/install-debugclients.py

branch
eric7-maintenance
changeset 10148
31ba20629af4
parent 10119
64147a7e6393
child 10170
6cf1ee737d8f
diff -r 6ae4d88c722b -r 31ba20629af4 scripts/install-debugclients.py
--- a/scripts/install-debugclients.py	Sun Jul 02 17:40:17 2023 +0200
+++ b/scripts/install-debugclients.py	Tue Aug 01 09:59:45 2023 +0200
@@ -350,8 +350,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)
 
@@ -400,8 +400,8 @@
     global progName, modDir, doCleanup, doCompile, distDir
     global sourceDir, eric7SourceDir
 
-    if sys.version_info < (3, 7, 0) or sys.version_info >= (4, 0, 0):
-        print("Sorry, the eric debugger requires Python 3.7 or better for running.")
+    if sys.version_info < (3, 8, 0) or sys.version_info >= (4, 0, 0):
+        print("Sorry, the eric debugger requires Python 3.8 or better for running.")
         exit(5)
 
     progName = os.path.basename(argv[0])

eric ide

mercurial