Browse Source

Issue #27053: Updates make_zip.py to correctly generate library ZIP file.

pull/9921/head
Steve Dower 10 years ago
parent
commit
7fa6378747
  1. 2
      Misc/NEWS
  2. 2
      Tools/msi/make_zip.py

2
Misc/NEWS

@ -1221,6 +1221,8 @@ Build
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).

2
Tools/msi/make_zip.py

@ -89,7 +89,7 @@ EMBED_LAYOUT = [
('/', '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'):

Loading…
Cancel
Save