Mon, 01 Nov 2021 17:02:40 +0100
Small change to the install script to show Python version together with Qt versions.
scripts/install.py | file | annotate | diff | comparison | revisions |
--- a/scripts/install.py Mon Nov 01 16:58:52 2021 +0100 +++ b/scripts/install.py Mon Nov 01 17:02:40 2021 +0100 @@ -1475,7 +1475,6 @@ print("\n") # perform dependency checks - print("Python Version: {0:d}.{1:d}.{2:d}".format(*sys.version_info[:3])) if sys.version_info < (3, 6, 0): print('Sorry, you must have Python 3.6.0 or higher.') exit(5) @@ -1646,6 +1645,8 @@ print("\nVersion Information") print("-------------------") + print("Python Version: {0:d}.{1:d}.{2:d}".format(*sys.version_info[:3])) + # check version of Qt # =================== qtMajor = int(qVersion().split('.')[0])