diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-17 09:53:31 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-17 09:53:31 -0500 |
commit | 34178ffbd95dc5b90407a22518fb2d08d95172c0 (patch) | |
tree | a7064f05aa64bd420502cddb9c074f0ccfc62db0 /doc/index.rst | |
parent | eb7e20302ed5a24af46701c31b6a365b9b8dfd5a (diff) | |
download | python-coveragepy-git-34178ffbd95dc5b90407a22518fb2d08d95172c0.tar.gz |
No longer try to bootstrap setuptools. It is a pre-req. Closes #202
Diffstat (limited to 'doc/index.rst')
-rw-r--r-- | doc/index.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/index.rst b/doc/index.rst index 6fc7a057..474e782f 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -24,6 +24,7 @@ coverage.py :history: 20120429T162100, updated for 3.5.2b1 :history: 20120503T233800, updated for 3.5.2 :history: 20120929T093500, updated for 3.5.3 +:history: 20121117T094900, Change from easy_install to pip. Coverage.py is a tool for measuring code coverage of Python programs. It @@ -55,7 +56,7 @@ Quick start Getting started is easy: #. Install coverage.py from the `coverage page on the Python Package Index`_, - or by using "easy_install coverage". For a few more details, see + or by using "pip install coverage". For a few more details, see :ref:`install`. #. Use ``coverage run`` to run your program and gather data: |