[Python-checkins] cpython (3.5): Issue #25152: Mention the deprecation of pyvenv

brett.cannon python-checkins at python.org
Fri Oct 21 15:54:48 EDT 2016


https://hg.python.org/cpython/rev/9feff7ba89b2
changeset:   104615:9feff7ba89b2
branch:      3.5
parent:      104612:0c298486d879
user:        Brett Cannon <brett at python.org>
date:        Fri Oct 21 12:53:40 2016 -0700
summary:
  Issue #25152: Mention the deprecation of pyvenv

files:
  Doc/library/venv.rst |  6 ++++++
  1 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
--- a/Doc/library/venv.rst
+++ b/Doc/library/venv.rst
@@ -23,6 +23,12 @@
 
 See :pep:`405` for more information about Python virtual environments.
 
+.. note::
+   The `pyvenv` script has been deprecated as of Python 3.6 in favor of using
+   ``python3 -m venv`` to help prevent any potential confusion as to which
+   Python interpreter a virtual environment will be based on.
+
+
 Creating virtual environments
 -----------------------------
 

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


More information about the Python-checkins mailing list