[Python-checkins] cpython (merge 3.5 -> default): 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/d3422b0e0cee
changeset:   99939:d3422b0e0cee
parent:      99936:a092030f1f9e
parent:      99938:84101e587f47
user:        Steve Dower <steve.dower at microsoft.com>
date:        Sat Jan 16 13:45:32 2016 -0800
summary:
  Issue #26065: Excludes venv from library when generating embeddable distro.

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


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -613,6 +613,9 @@
 Windows
 -------
 
+- Issue #26065: Excludes venv from library when generating embeddable
+  distro.
+
 - Issue #25022: Removed very outdated PC/example_nt/ directory.
 
 Tools/Demos
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