summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2021-01-04 09:43:11 (GMT)
committerGitHub <noreply@github.com>2021-01-04 09:43:11 (GMT)
commita38e04b566879a5040ea97428d7ee4331d76513f (patch)
tree746e186ea66d4f4d1850d1f139902e55cfda07ca
parent14097a2785414c728d41d8d730a469a8c46ecdb9 (diff)
downloadcpython-a38e04b566879a5040ea97428d7ee4331d76513f.zip
cpython-a38e04b566879a5040ea97428d7ee4331d76513f.tar.gz
cpython-a38e04b566879a5040ea97428d7ee4331d76513f.tar.bz2
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.
-rwxr-xr-xMac/BuildScript/build-installer.py6
-rw-r--r--Misc/NEWS.d/next/macOS/2021-01-04-01-17-17.bpo-42361.eolZAi.rst2
2 files changed, 5 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 4d7bc10..deafcce 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 = [ ]
diff --git a/Misc/NEWS.d/next/macOS/2021-01-04-01-17-17.bpo-42361.eolZAi.rst b/Misc/NEWS.d/next/macOS/2021-01-04-01-17-17.bpo-42361.eolZAi.rst
new file mode 100644
index 0000000..39526b3
--- /dev/null
+++ b/Misc/NEWS.d/next/macOS/2021-01-04-01-17-17.bpo-42361.eolZAi.rst
@@ -0,0 +1,2 @@
+Update macOS installer build to use Tcl/Tk 8.6.11 (rc2, expected to be final
+release).