diff -r a906ba97c1fe -r e1f6a9e53979 scripts/install.py --- a/scripts/install.py Tue Jan 04 15:38:11 2022 +0100 +++ b/scripts/install.py Tue Feb 08 14:15:48 2022 +0100 @@ -1487,8 +1487,8 @@ print("\n") # perform dependency checks - if sys.version_info < (3, 6, 0): - print('Sorry, you must have Python 3.6.0 or higher.') + if sys.version_info < (3, 7, 0): + print('Sorry, you must have Python 3.7.0 or higher.') exit(5) try: @@ -1932,8 +1932,8 @@ global ignorePyqt6Tools global verbose - if sys.version_info < (3, 6, 0) or sys.version_info > (3, 99, 99): - print('Sorry, eric requires at least Python 3.6 for running.') + 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.') exit(5) progName = os.path.basename(argv[0])