--- a/scripts/install.py Thu Jul 20 10:36:23 2023 +0200 +++ b/scripts/install.py Thu Jul 20 11:00:30 2023 +0200 @@ -1592,8 +1592,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) @@ -2185,8 +2185,8 @@ global withPyqt6Tools global verbose - if sys.version_info < (3, 7, 0) or sys.version_info > (3, 99, 99): - print("Sorry, eric requires at least Python 3.7 for running.") + 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.") exit(5) progName = os.path.basename(argv[0])