File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,7 @@ these new features.
4444Numpy 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 >`_:
4948This format divides the docstring into clear sections, each having
5049different parsing rules that make the docstring easy to read both as
5150raw text and as HTML. We could consider alternatives, or invent our
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ ordered from best/hardest to worst/easiest):
1301301. 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
1361362. 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
Original file line number Diff line number Diff 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
287288edit this file if you want to add new environments to test (e.g.,
You can’t perform that action at this time.
0 commit comments