diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-18 17:50:12 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-18 17:50:12 -0500 |
commit | 169075b32881c485bf464787ada86d1ed420a62d (patch) | |
tree | f248a1d5db659abff94359b5ebc101666d88c59e | |
parent | d2a5a58fabef629953046e6cf13c3549c1266fc6 (diff) | |
download | python-coveragepy-git-169075b32881c485bf464787ada86d1ed420a62d.tar.gz |
Remove outdated alternate installation instructions
-rw-r--r-- | doc/install.rst | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/doc/install.rst b/doc/install.rst index bcea93f1..5774d1b1 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -24,17 +24,16 @@ Installation .. :history: 20131005T210600, updated for 3.7. .. :history: 20131212T213500, updated for 3.7.1. .. :history: 20140927T102700, updated for 4.0a1. +.. :history: 20161218T173000, remove alternate instructions w/ Distribute .. highlight:: console .. _coverage_pypi: http://pypi.python.org/pypi/coverage .. _setuptools: http://pypi.python.org/pypi/setuptools -.. _Distribute: http://packages.python.org/distribute/ -Installing coverage.py is done in the usual ways. The simplest way is with -pip:: +You can install coverage.py in the usual ways. The simplest way is with pip:: $ pip install coverage @@ -45,18 +44,6 @@ pip:: $ pip install --pre coverage -The alternate old-school technique is: - -#. Install (or already have installed) `setuptools`_ or `Distribute`_. - -#. Download the appropriate kit from the - `coverage.py page on the Python Package Index`__. - -#. Run ``python setup.py install``. - -.. __: coverage_pypi_ - - .. _install_extension: C Extension |