mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
bpo-25427: Remove pyvenv (GH-5962)
This commit is contained in:
parent
61f82e0e33
commit
a8c342465b
9 changed files with 8 additions and 35 deletions
4
setup.py
4
setup.py
|
@ -2291,7 +2291,7 @@ class PyBuildScripts(build_scripts):
|
|||
newoutfiles = []
|
||||
newupdated_files = []
|
||||
for filename in outfiles:
|
||||
if filename.endswith(('2to3', 'pyvenv')):
|
||||
if filename.endswith('2to3'):
|
||||
newfilename = filename + fullversion
|
||||
else:
|
||||
newfilename = filename + minoronly
|
||||
|
@ -2359,7 +2359,7 @@ def main():
|
|||
# check the PyBuildScripts command above, and change the links
|
||||
# created by the bininstall target in Makefile.pre.in
|
||||
scripts = ["Tools/scripts/pydoc3", "Tools/scripts/idle3",
|
||||
"Tools/scripts/2to3", "Tools/scripts/pyvenv"]
|
||||
"Tools/scripts/2to3"]
|
||||
)
|
||||
|
||||
# --install-platlib
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue