summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-05-19 17:47:47 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-05-19 17:47:47 (GMT)
commitd8bf09c6cd1137b148a06a0283c060e3e1e6cc46 (patch)
tree60cf10c61ea1a1e91a7012e735a8270f46ec798b /Tools
parent3116cc44af1de8f261f642baba50e254b5e1592d (diff)
downloadcpython-d8bf09c6cd1137b148a06a0283c060e3e1e6cc46.zip
cpython-d8bf09c6cd1137b148a06a0283c060e3e1e6cc46.tar.gz
cpython-d8bf09c6cd1137b148a06a0283c060e3e1e6cc46.tar.bz2
Issue #27053: Updates make_zip.py to correctly generate library ZIP file.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/make_zip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/make_zip.py b/Tools/msi/make_zip.py
index d49b5b4..753ba0f 100644
--- a/Tools/msi/make_zip.py
+++ b/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'):