Commit d8bf09c6 authored by Steve Dower's avatar Steve Dower

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

parent 3116cc44
...@@ -556,6 +556,8 @@ Build ...@@ -556,6 +556,8 @@ Build
Windows 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 - 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 that don't include the contents of the include directory (that is, 1.0.2e
and later). and later).
......
...@@ -89,7 +89,7 @@ EMBED_LAYOUT = [ ...@@ -89,7 +89,7 @@ EMBED_LAYOUT = [
('/', 'PCBuild/$arch', 'python*.exe', is_not_debug), ('/', 'PCBuild/$arch', 'python*.exe', is_not_debug),
('/', 'PCBuild/$arch', '*.pyd', is_not_debug), ('/', 'PCBuild/$arch', '*.pyd', is_not_debug),
('/', 'PCBuild/$arch', '*.dll', 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'): if os.getenv('DOC_FILENAME'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment