diff options
author | Brett Cannon <brettcannon@users.noreply.github.com> | 2018-04-20 21:15:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 21:15:40 (GMT) |
commit | a8c342465b977115b88a4f130833a2fd4c4e7356 (patch) | |
tree | 28c53bd4d0628931a6ac5cd705f24ae85e7305b3 /Doc/library/venv.rst | |
parent | 61f82e0e337f971da57f8f513abfe693edf95aa5 (diff) | |
download | cpython-a8c342465b977115b88a4f130833a2fd4c4e7356.zip cpython-a8c342465b977115b88a4f130833a2fd4c4e7356.tar.gz cpython-a8c342465b977115b88a4f130833a2fd4c4e7356.tar.bz2 |
bpo-25427: Remove pyvenv (GH-5962)
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r-- | Doc/library/venv.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 6707be7..1fff7bc4 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -23,10 +23,6 @@ independent set of installed Python packages in its site directories. 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 |