[Python-checkins] cpython (3.5): Issue #26065: Excludes venv from library when generating embeddable distro.

steve.dower python-checkins at python.org
Sat Jan 16 16:45:47 EST 2016


https://hg.python.org/cpython/rev/84101e587f47
changeset:   99938:84101e587f47
branch:      3.5
parent:      99934:fc117df27143
user:        Steve Dower <steve.dower at microsoft.com>
date:        Sat Jan 16 13:44:43 2016 -0800
summary:
  Issue #26065: Excludes venv from library when generating embeddable distro.

files:
  Misc/NEWS             |  5 +++++
  Tools/msi/make_zip.py |  1 +
  2 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -170,6 +170,11 @@
 
 - Issue #25798: Update OS X 10.5 installer to use OpenSSL 1.0.2e.
 
+Windows
+-------
+
+- Issue #26065: Excludes venv from library when generating embeddable
+  distro.
 
 What's New in Python 3.5.1 final?
 =================================
diff --git a/Tools/msi/make_zip.py b/Tools/msi/make_zip.py
--- a/Tools/msi/make_zip.py
+++ b/Tools/msi/make_zip.py
@@ -23,6 +23,7 @@
     'site-packages',
     'tkinter',
     'turtledemo',
+    'venv',
 }
 
 EXCLUDE_FILE_FROM_LIBRARY = {

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list