scripts/install.py

changeset 7894
4370a8b30648
parent 7836
2f0d208b8137
child 7900
72b88fb20261
diff -r 29d2c2e5b948 -r 4370a8b30648 scripts/install.py
--- a/scripts/install.py	Fri Dec 18 12:24:33 2020 +0100
+++ b/scripts/install.py	Fri Dec 18 12:44:31 2020 +0100
@@ -1431,8 +1431,8 @@
     
     # perform dependency checks
     print("Python Version: {0:d}.{1:d}.{2:d}".format(*sys.version_info[:3]))
-    if sys.version_info < (3, 5, 0):
-        print('Sorry, you must have Python 3.5.0 or higher.')
+    if sys.version_info < (3, 6, 0):
+        print('Sorry, you must have Python 3.6.0 or higher.')
         exit(5)
     
     try:
@@ -1874,8 +1874,8 @@
     global installApis, doCleanDesktopLinks, yes2All, installCwd
     global ignorePyqt5Tools
     
-    if sys.version_info < (3, 5, 0) or sys.version_info > (3, 99, 99):
-        print('Sorry, eric6 requires at least Python 3.5 for running.')
+    if sys.version_info < (3, 6, 0) or sys.version_info > (3, 99, 99):
+        print('Sorry, eric6 requires at least Python 3.6 for running.')
         exit(5)
     
     progName = os.path.basename(argv[0])

eric ide

mercurial