changeset: 101438:a6473f7a8c55 parent: 101436:783c1b8cdddb parent: 101437:12cb81e90479 user: Steve Dower date: Thu May 19 10:47:55 2016 -0700 files: Misc/NEWS description: Issue #27053: Updates make_zip.py to correctly generate library ZIP file. diff -r 783c1b8cdddb -r a6473f7a8c55 Misc/NEWS --- a/Misc/NEWS Thu May 19 16:48:06 2016 +0200 +++ b/Misc/NEWS Thu May 19 10:47:55 2016 -0700 @@ -1221,6 +1221,8 @@ Windows ------- +- Issue #27053: Updates make_zip.py to correctly generate library ZIP file. + - Issue #26268: Update the prepare_ssl.py script to handle OpenSSL releases that don't include the contents of the include directory (that is, 1.0.2e and later). diff -r 783c1b8cdddb -r a6473f7a8c55 Tools/msi/make_zip.py --- a/Tools/msi/make_zip.py Thu May 19 16:48:06 2016 +0200 +++ b/Tools/msi/make_zip.py Thu May 19 10:47:55 2016 -0700 @@ -89,7 +89,7 @@ ('/', 'PCBuild/$arch', 'python*.exe', is_not_debug), ('/', 'PCBuild/$arch', '*.pyd', is_not_debug), ('/', 'PCBuild/$arch', '*.dll', is_not_debug), - ('python35.zip', 'Lib', '**/*', include_in_lib), + ('python{0.major}{0.minor}.zip'.format(sys.version_info), 'Lib', '**/*', include_in_lib), ] if os.getenv('DOC_FILENAME'):