[Python-checkins] cpython (3.3): Update docs to reflect resurrection of Setuptools over Distribute

jason.coombs python-checkins at python.org
Tue May 13 04:42:07 CEST 2014


http://hg.python.org/cpython/rev/1a3f2d0ced35
changeset:   90675:1a3f2d0ced35
branch:      3.3
parent:      90586:ab5e2b0fba15
user:        Jason R. Coombs <jaraco at jaraco.com>
date:        Mon May 12 22:40:49 2014 -0400
summary:
  Update docs to reflect resurrection of Setuptools over Distribute

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


diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
--- a/Doc/library/venv.rst
+++ b/Doc/library/venv.rst
@@ -40,11 +40,11 @@
    A venv is a directory tree which contains Python executable files and
    other files which indicate that it is a venv.
 
-   Common installation tools such as ``Distribute`` and ``pip`` work as
+   Common installation tools such as ``Setuptools`` and ``pip`` work as
    expected with venvs - i.e. when a venv is active, they install Python
    packages into the venv without needing to be told to do so explicitly.
    Of course, you need to install them into the venv first: this could be
-   done by running ``distribute_setup.py`` with the venv activated,
+   done by running ``ez_setup.py`` with the venv activated,
    followed by running ``easy_install pip``. Alternatively, you could download
    the source tarballs and run ``python setup.py install`` after unpacking,
    with the venv activated.

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


More information about the Python-checkins mailing list