mirror of https://github.com/python/cpython
Issue #26065: Excludes venv from library when generating embeddable distro.
This commit is contained in:
parent
1d329413fc
commit
10cabcbe14
|
@ -170,6 +170,11 @@ Build
|
|||
|
||||
- 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?
|
||||
=================================
|
||||
|
|
|
@ -23,6 +23,7 @@ EXCLUDE_FROM_LIBRARY = {
|
|||
'site-packages',
|
||||
'tkinter',
|
||||
'turtledemo',
|
||||
'venv',
|
||||
}
|
||||
|
||||
EXCLUDE_FILE_FROM_LIBRARY = {
|
||||
|
|
Loading…
Reference in New Issue