Commit 08eca5fa authored by Steve Dower's avatar Steve Dower

Issue #26065: Excludes venv from library when generating embeddable distro.

parent f8b96604
...@@ -170,6 +170,11 @@ Build ...@@ -170,6 +170,11 @@ Build
- Issue #25798: Update OS X 10.5 installer to use OpenSSL 1.0.2e. - 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? What's New in Python 3.5.1 final?
================================= =================================
......
...@@ -23,6 +23,7 @@ EXCLUDE_FROM_LIBRARY = { ...@@ -23,6 +23,7 @@ EXCLUDE_FROM_LIBRARY = {
'site-packages', 'site-packages',
'tkinter', 'tkinter',
'turtledemo', 'turtledemo',
'venv',
} }
EXCLUDE_FILE_FROM_LIBRARY = { EXCLUDE_FILE_FROM_LIBRARY = {
......
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