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.
44
44
Numpy docstring format
45
45
----------------------
46
46
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 >`_:
49
48
This format divides the docstring into clear sections, each having
50
49
different parsing rules that make the docstring easy to read both as
51
50
raw 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):
130
130
1. The distutils wininst installer allows a post-install script to
131
131
run. It might be possible to get this script to run pip _ to
132
132
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 > `_
134
134
for someone who has trod that ground before).
135
135
136
136
2. Continue to ship dateutil _, pytz _, six _ and pyparsing _ in
@@ -177,4 +177,4 @@ out of the box.
177
177
.. _pytz : https://pypi.org/project/pytz/
178
178
.. _setuptools : https://pypi.org/project/setuptools/
179
179
.. _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:
274
274
275
275
$ tox -e py310,py311
276
276
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:
280
281
281
282
.. code-block :: bash
282
283
283
- $ pip install -U -i http://pypi.testrun.org detox
284
- $ detox
284
+ $ tox --parallel auto
285
+
285
286
286
287
Tox is configured using a file called ``tox.ini ``. You may need to
287
288
edit 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