diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-01-04 02:17:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 02:17:30 -0800 |
commit | cb882f97bc142380460ea519829dc4baf0eb01f2 (patch) | |
tree | e4937c88d0ef042dd5ae453e5b7039080b60ac5a /Mac | |
parent | b0ee2b492dbf550fbd2a63b82de0a4dc9d67f32e (diff) | |
download | cpython-git-cb882f97bc142380460ea519829dc4baf0eb01f2.tar.gz |
bpo-42361: Update macOS installer build to use Tcl/Tk 8.6.11 (GH-24081)
As of 2021-01-03, Tcl/Tk 8.6.11rc2 is expected to be the final release.
(cherry picked from commit a38e04b566879a5040ea97428d7ee4331d76513f)
Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 16816d1cf8..38c66801de 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -263,10 +263,10 @@ def library_recipes(): tk_patches = ['tk868_on_10_8_10_9.patch'] else: - tcl_tk_ver='8.6.10' - tcl_checksum='97c55573f8520bcab74e21bfd8d0aadc' + tcl_tk_ver='8.6.11' + tcl_checksum='8a4c004f48984a03a7747e9ba06e4da4' - tk_checksum='602a47ad9ecac7bf655ada729d140a94' + tk_checksum='c7ee71a2d05bba78dfffd76528dc17c6' tk_patches = [ ] |