Mon, 21 Oct 2024 13:30:23 +0200
Modified the mac App Bundle creation of the install script slightly.
scripts/install.py | file | annotate | diff | comparison | revisions |
--- a/scripts/install.py Mon Oct 21 11:49:13 2024 +0200 +++ b/scripts/install.py Mon Oct 21 13:30:23 2024 +0200 @@ -1182,7 +1182,7 @@ starter = os.path.join(directories["exe"], "eric") os.symlink(macPythonExe, starter) else: - starter = "python{0}".format(sys.version_info.major) + starter = "python{0}.{1}".format(sys.version_info.major, sys.version_info.minor) wname = os.path.join(directories["exe"], "eric7_ide")