summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-04-18 19:21:45 -0700
committerJon Dufresne <jon.dufresne@gmail.com>2018-04-18 19:21:45 -0700
commitd1f420e343cc083098e293cf769367da9c0a3c5a (patch)
tree994d5a9b67ea23295e0a93e75ade4c375519877f
parent8f4692d488531c507507d160e58f06fa79a564a2 (diff)
downloadpython-coveragepy-d1f420e343cc083098e293cf769367da9c0a3c5a.tar.gz
Update all pypi.python.org URLs to pypi.org
For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
-rw-r--r--CHANGES.rst4
-rw-r--r--README.rst12
-rw-r--r--doc/faq.rst6
-rw-r--r--doc/index.rst2
-rw-r--r--doc/install.rst4
-rw-r--r--doc/plugins.rst2
-rw-r--r--doc/trouble.rst2
7 files changed, 16 insertions, 16 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 126ced9..768b1be 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -492,7 +492,7 @@ Work from the PyCon 2016 Sprints!
.. _issue 478: https://bitbucket.org/ned/coveragepy/issues/478/help-shows-silly-program-name-when-running
.. _issue 484: https://bitbucket.org/ned/coveragepy/issues/484/multiprocessing-greenlet-concurrency
.. _issue 492: https://bitbucket.org/ned/coveragepy/issues/492/subprocess-coverage-strange-detection-of
-.. _unittest-mixins: https://pypi.python.org/pypi/unittest-mixins
+.. _unittest-mixins: https://pypi.org/project/unittest-mixins/
.. _changes_41:
@@ -1811,7 +1811,7 @@ Version 3.2b4 --- 2009-12-01
- On Python 3.x, setuptools has been replaced by `Distribute`_.
-.. _Distribute: https://pypi.python.org/pypi/distribute
+.. _Distribute: https://pypi.org/project/distribute/
Version 3.2b3 --- 2009-11-23
diff --git a/README.rst b/README.rst
index d1c1698..a799e9d 100644
--- a/README.rst
+++ b/README.rst
@@ -85,22 +85,22 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
:target: https://requires.io/github/nedbat/coveragepy/requirements/?branch=master
:alt: Requirements status
.. |kit| image:: https://badge.fury.io/py/coverage.svg
- :target: https://pypi.python.org/pypi/coverage
+ :target: https://pypi.org/project/coverage/
:alt: PyPI status
.. |format| image:: https://img.shields.io/pypi/format/coverage.svg
- :target: https://pypi.python.org/pypi/coverage
+ :target: https://pypi.org/project/coverage/
:alt: Kit format
.. |downloads| image:: https://img.shields.io/pypi/dw/coverage.svg
- :target: https://pypi.python.org/pypi/coverage
+ :target: https://pypi.org/project/coverage/
:alt: Weekly PyPI downloads
.. |versions| image:: https://img.shields.io/pypi/pyversions/coverage.svg
- :target: https://pypi.python.org/pypi/coverage
+ :target: https://pypi.org/project/coverage/
:alt: Python versions supported
.. |status| image:: https://img.shields.io/pypi/status/coverage.svg
- :target: https://pypi.python.org/pypi/coverage
+ :target: https://pypi.org/project/coverage/
:alt: Package stability
.. |license| image:: https://img.shields.io/pypi/l/coverage.svg
- :target: https://pypi.python.org/pypi/coverage
+ :target: https://pypi.org/project/coverage/
:alt: License
.. |codecov| image:: https://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master&precision=2
:target: https://codecov.io/github/nedbat/coveragepy?branch=master
diff --git a/doc/faq.rst b/doc/faq.rst
index f6085b6..fb6dc91 100644
--- a/doc/faq.rst
+++ b/doc/faq.rst
@@ -109,15 +109,15 @@ __ https://nedbatchelder.com/blog/200710/flaws_in_coverage_measurement.html
- `trialcoverage`_ is a plug-in for Twisted trial.
- .. _trialcoverage: https://pypi.python.org/pypi/trialcoverage
+ .. _trialcoverage: https://pypi.org/project/trialcoverage/
- `pytest-coverage`_
- .. _pytest-coverage: https://pypi.python.org/pypi/pytest-coverage
+ .. _pytest-coverage: https://pypi.org/project/pytest-coverage/
- `django-coverage`_ for use with Django.
- .. _django-coverage: https://pypi.python.org/pypi/django-coverage
+ .. _django-coverage: https://pypi.org/project/django-coverage/
**Q: Where can I get more help with coverage.py?**
diff --git a/doc/index.rst b/doc/index.rst
index 20658ed..2df9554 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -145,7 +145,7 @@ Getting started is easy:
Then visit htmlcov/index.html in your browser, to see a
`report like this one`_.
-.. _coverage.py page on the Python Package Index: https://pypi.python.org/pypi/coverage
+.. _coverage.py page on the Python Package Index: https://pypi.org/project/coverage/
.. _report like this: https://nedbatchelder.com/files/sample_coverage_html/index.html
.. _report like this one: https://nedbatchelder.com/files/sample_coverage_html_beta/index.html
diff --git a/doc/install.rst b/doc/install.rst
index 29bc833..4f3717b 100644
--- a/doc/install.rst
+++ b/doc/install.rst
@@ -29,8 +29,8 @@ Installation
.. highlight:: console
-.. _coverage_pypi: https://pypi.python.org/pypi/coverage
-.. _setuptools: https://pypi.python.org/pypi/setuptools
+.. _coverage_pypi: https://pypi.org/project/coverage/
+.. _setuptools: https://pypi.org/project/setuptools/
You can install coverage.py in the usual ways. The simplest way is with pip::
diff --git a/doc/plugins.rst b/doc/plugins.rst
index f2bad6d..e4967b4 100644
--- a/doc/plugins.rst
+++ b/doc/plugins.rst
@@ -66,7 +66,7 @@ Some coverage.py plug-ins you might find useful:
* `Django template coverage.py plug-in`__: for measuring coverage in Django
templates.
- .. __: https://pypi.python.org/pypi/django_coverage_plugin
+ .. __: https://pypi.org/project/django_coverage_plugin/
* `Mako template coverage plug-in`__: for measuring coverage in Mako templates.
Doesn't work yet, probably needs some changes in Mako itself.
diff --git a/doc/trouble.rst b/doc/trouble.rst
index 7534c5c..c0003aa 100644
--- a/doc/trouble.rst
+++ b/doc/trouble.rst
@@ -64,7 +64,7 @@ timid=True`` configuration option.
DecoratorTools fiddles with the trace function. You will need to use
``--timid``.
-.. _DecoratorTools: https://pypi.python.org/pypi/DecoratorTools
+.. _DecoratorTools: https://pypi.org/project/DecoratorTools/
.. _TurboGears: http://turbogears.org/