Skip to content

Commit e6fe357

Browse files
nrnavaneetrcomer
authored andcommitted
Fix broken/deprecated documentation links in MEPs and testing guides (matplotlib#30343)
* Fixed broken links * Minor changes * Made requested changes * Update doc/devel/MEP/MEP10.rst Co-authored-by: Ruth Comer <[email protected]> --------- Co-authored-by: Ruth Comer <[email protected]>
1 parent ff5c842 commit e6fe357

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

doc/devel/MEP/MEP10.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ these new features.
4444
Numpy docstring format
4545
----------------------
4646

47-
`Numpy docstring format
48-
<https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt>`_:
47+
`Numpy docstring format <https://numpydoc.readthedocs.io/en/stable/format.html>`_:
4948
This format divides the docstring into clear sections, each having
5049
different parsing rules that make the docstring easy to read both as
5150
raw text and as HTML. We could consider alternatives, or invent our

doc/devel/MEP/MEP11.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ ordered from best/hardest to worst/easiest):
130130
1. The distutils wininst installer allows a post-install script to
131131
run. It might be possible to get this script to run pip_ to
132132
install the other dependencies. (See `this thread
133-
<http://grokbase.com/t/python/distutils-sig/109bdnfhp4/distutils-ann-setuptools-post-install-script-for-bdist-wininst>`_
133+
<https://mail.python.org/pipermail/distutils-sig/2010-September/016857.html>`_
134134
for someone who has trod that ground before).
135135

136136
2. Continue to ship dateutil_, pytz_, six_ and pyparsing_ in
@@ -177,4 +177,4 @@ out of the box.
177177
.. _pytz: https://pypi.org/project/pytz/
178178
.. _setuptools: https://pypi.org/project/setuptools/
179179
.. _six: https://pypi.org/project/six/
180-
.. _easy_install: https://setuptools.readthedocs.io/en/latest/easy_install.html
180+
.. _easy_install: https://setuptools.pypa.io/en/latest/deprecated/easy_install.html

doc/devel/testing.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,14 +274,15 @@ You can also run tox on a subset of environments:
274274
275275
$ tox -e py310,py311
276276
277-
Tox processes everything serially so it can take a long time to test
278-
several environments. To speed it up, you might try using a new,
279-
parallelized version of tox called ``detox``. Give this a try:
277+
Tox processes environments sequentially by default,
278+
which can be slow when testing multiple environments.
279+
To speed this up, tox now includes built-in parallelization support
280+
via the --parallel flag. Give it a try:
280281

281282
.. code-block:: bash
282283
283-
$ pip install -U -i http://pypi.testrun.org detox
284-
$ detox
284+
$ tox --parallel auto
285+
285286
286287
Tox is configured using a file called ``tox.ini``. You may need to
287288
edit this file if you want to add new environments to test (e.g.,

0 commit comments

Comments
 (0)