diff options
author | Ned Deily <nad@python.org> | 2021-01-04 04:43:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 04:43:11 -0500 |
commit | a38e04b566879a5040ea97428d7ee4331d76513f (patch) | |
tree | 746e186ea66d4f4d1850d1f139902e55cfda07ca /Mac | |
parent | bpo-41837: Update macOS installer build to use OpenSSL 1.1.1i. (GH-24080) (diff) | |
download | cpython-a38e04b566879a5040ea97428d7ee4331d76513f.tar.gz cpython-a38e04b566879a5040ea97428d7ee4331d76513f.tar.bz2 cpython-a38e04b566879a5040ea97428d7ee4331d76513f.zip |
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.
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 4d7bc105451..deafcce4f81 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -260,10 +260,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 = [ ] |