--- 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])