scripts/install-debugclients.py

branch
eric7
changeset 10119
64147a7e6393
parent 10091
ac6edcfe7831
child 10170
6cf1ee737d8f
--- a/scripts/install-debugclients.py	Thu Jul 20 10:36:23 2023 +0200
+++ b/scripts/install-debugclients.py	Thu Jul 20 11:00:30 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