diff options
author | Christopher Chavez <chrischavez@gmx.us> | 2024-03-12 05:37:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 05:37:07 (GMT) |
commit | 4fa95c6ec392b9fc80ad720cc4a8bd2786fc2835 (patch) | |
tree | 531276b95a71b1eeeffa9d06a2e460676864de3d /Mac/BuildScript/build-installer.py | |
parent | 3cc5ae5c2c6e729ca2750ed490dad56faa7c342d (diff) | |
download | cpython-4fa95c6ec392b9fc80ad720cc4a8bd2786fc2835.zip cpython-4fa95c6ec392b9fc80ad720cc4a8bd2786fc2835.tar.gz cpython-4fa95c6ec392b9fc80ad720cc4a8bd2786fc2835.tar.bz2 |
gh-116145: Update macOS installer to Tcl/Tk 8.6.14 (GH-116151)
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 0af9056..b2f8c77 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -264,11 +264,11 @@ def library_recipes(): tk_patches = ['backport_gh71383_fix.patch', 'tk868_on_10_8_10_9.patch', 'backport_gh110950_fix.patch'] else: - tcl_tk_ver='8.6.13' - tcl_checksum='43a1fae7412f61ff11de2cfd05d28cfc3a73762f354a417c62370a54e2caf066' + tcl_tk_ver='8.6.14' + tcl_checksum='5880225babf7954c58d4fb0f5cf6279104ce1cd6aa9b71e9a6322540e1c4de66' - tk_checksum='2e65fa069a23365440a3c56c556b8673b5e32a283800d8d9b257e3f584ce0675' - tk_patches = ['backport_gh92603_fix.patch', 'backport_gh71383_fix.patch', 'backport_gh110950_fix.patch'] + tk_checksum='8ffdb720f47a6ca6107eac2dd877e30b0ef7fac14f3a84ebbd0b3612cee41a94' + tk_patches = [] base_url = "https://prdownloads.sourceforge.net/tcl/{what}{version}-src.tar.gz" |