diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-10-28 19:10:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 19:10:15 (GMT) |
commit | f19c1a115f782036edac306de0f3f9968c1e1fd6 (patch) | |
tree | a69728ba43565141733e754738f458cb6ea4fc0d /Mac/BuildScript/build-installer.py | |
parent | f2407144347fafcd69c2ade41b5d9c3fb07b59ef (diff) | |
download | cpython-f19c1a115f782036edac306de0f3f9968c1e1fd6.zip cpython-f19c1a115f782036edac306de0f3f9968c1e1fd6.tar.gz cpython-f19c1a115f782036edac306de0f3f9968c1e1fd6.tar.bz2 |
bpo-44828: Avoid tkinter file dialog failure on macOS 12 Monterey (GH-29276) (GH-29279)
when using the Tk 8.6.11 provided by python.org macOS installers.
Patch by Marc Culler of the Tk project.
(cherry picked from commit be8318be05e1a874215fa75b8845ede74b2c69b6)
Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index ec2be50..db25eb8 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -265,7 +265,7 @@ def library_recipes(): tcl_checksum='8a4c004f48984a03a7747e9ba06e4da4' tk_checksum='c7ee71a2d05bba78dfffd76528dc17c6' - tk_patches = [ ] + tk_patches = ['bpo-44828-filedialog-crash-monterey.patch'] result.extend([ |