[Python-checkins] bpo-34370: Revert to using released Tk 8.6.8 with macOS installers

Ned Deily webhook-mailer at python.org
Sat Oct 13 16:39:49 EDT 2018


https://github.com/python/cpython/commit/f55c3ae657595d12ce78aca76c9c6b998d632424
commit: f55c3ae657595d12ce78aca76c9c6b998d632424
branch: 3.6
author: Ned Deily <nad at python.org>
committer: Ned Deily <nad at python.org>
date: 2018-10-13T02:08:48-04:00
summary:

bpo-34370: Revert to using released Tk 8.6.8 with macOS installers

For 3.7.1rc1 and 3.6.7rc1 we used a pre-release development
snapshot of Tk 8.6 to pick up some post-8.6.8 fixes for macOS.
But the snapshot introduced at least one regression (bpo-34927).
For rc2, revert to using the standard release 8.6.8 for now.
This reverts commit adf493227f1efd5d6b34f46b854142bf3b5a411c.

files:
A Misc/NEWS.d/next/macOS/2018-10-13-02-07-55.bpo-34370.FqUqcG.rst
M Mac/BuildScript/build-installer.py

diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 2959bea48a18..b97d55bb0306 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -239,9 +239,9 @@ def library_recipes():
                   },
               ),
           dict(
-              name="Tk 8.6.8+",
-              url="http://core.tcl.tk/tk/tarball/16fdad9d/tk-16fdad9d.tar.gz",
-              checksum='b8e0df69021924e8392f03d506252bdb',
+              name="Tk 8.6.8",
+              url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk8.6.8-src.tar.gz",
+              checksum='5e0faecba458ee1386078fb228d008ba',
               patches=[
                   "tk868_on_10_8_10_9.patch",
                    ],
diff --git a/Misc/NEWS.d/next/macOS/2018-10-13-02-07-55.bpo-34370.FqUqcG.rst b/Misc/NEWS.d/next/macOS/2018-10-13-02-07-55.bpo-34370.FqUqcG.rst
new file mode 100644
index 000000000000..57cadc319591
--- /dev/null
+++ b/Misc/NEWS.d/next/macOS/2018-10-13-02-07-55.bpo-34370.FqUqcG.rst
@@ -0,0 +1,3 @@
+Revert to using the released Tk 8.6.8 with macOS installers instead of the
+Tk 8.6.x development snapshot used with 3.7.1rc1 and 3.6.7rc1. The snapshot
+introduced at least one significant regression (bpo-34927).



More information about the Python-checkins mailing list