diff options
author | Ned Deily <nad@python.org> | 2018-09-25 23:38:11 -0400 |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-09-26 01:13:54 -0400 |
commit | adf493227f1efd5d6b34f46b854142bf3b5a411c (patch) | |
tree | 055dff3da9f8b7e4de3947aca2ec9ab3833a57b0 /Mac/BuildScript/build-installer.py | |
parent | dc335ae77dfc1fb6a500eb1cd0baf23fcda45434 (diff) | |
download | cpython-git-adf493227f1efd5d6b34f46b854142bf3b5a411c.tar.gz |
bpo-34370: Update Tk 8.6 used with macOS installers
Have macOS 10.9+ installer builds for 3.7.1rc and 3.6.7rc use a development
snapshot of Tk 8.6 (post-8.6.8) to mitigate certain scroller issues seen
with IDLE and tkinter apps.
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-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 b97d55bb03..2959bea48a 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="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk8.6.8-src.tar.gz", - checksum='5e0faecba458ee1386078fb228d008ba', + name="Tk 8.6.8+", + url="http://core.tcl.tk/tk/tarball/16fdad9d/tk-16fdad9d.tar.gz", + checksum='b8e0df69021924e8392f03d506252bdb', patches=[ "tk868_on_10_8_10_9.patch", ], |