Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions doc/devel/MEP/MEP10.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ these new features.
Numpy docstring format
----------------------

`Numpy docstring format
<https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt>`_:
`Numpy docstring format <https://numpydoc.readthedocs.io/en/stable/format.html>`_:
This format divides the docstring into clear sections, each having
different parsing rules that make the docstring easy to read both as
raw text and as HTML. We could consider alternatives, or invent our
Expand Down
4 changes: 2 additions & 2 deletions doc/devel/MEP/MEP11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ ordered from best/hardest to worst/easiest):
1. The distutils wininst installer allows a post-install script to
run. It might be possible to get this script to run pip_ to
install the other dependencies. (See `this thread
<http://grokbase.com/t/python/distutils-sig/109bdnfhp4/distutils-ann-setuptools-post-install-script-for-bdist-wininst>`_
<https://mail.python.org/pipermail/distutils-sig/2010-September/016857.html>`_
for someone who has trod that ground before).

2. Continue to ship dateutil_, pytz_, six_ and pyparsing_ in
Expand Down Expand Up @@ -177,4 +177,4 @@ out of the box.
.. _pytz: https://pypi.org/project/pytz/
.. _setuptools: https://pypi.org/project/setuptools/
.. _six: https://pypi.org/project/six/
.. _easy_install: https://setuptools.readthedocs.io/en/latest/easy_install.html
.. _easy_install: https://setuptools.pypa.io/en/latest/deprecated/easy_install.html
11 changes: 6 additions & 5 deletions doc/devel/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,14 +274,15 @@ You can also run tox on a subset of environments:

$ tox -e py310,py311

Tox processes everything serially so it can take a long time to test
several environments. To speed it up, you might try using a new,
parallelized version of tox called ``detox``. Give this a try:
Tox processes environments sequentially by default,
which can be slow when testing multiple environments.
To speed this up, tox now includes built-in parallelization support
via the --parallel flag. Give it a try:

.. code-block:: bash

$ pip install -U -i http://pypi.testrun.org detox
$ detox
$ tox --parallel auto
Comment thread
nrnavaneet marked this conversation as resolved.
Comment thread
rcomer marked this conversation as resolved.


Tox is configured using a file called ``tox.ini``. You may need to
edit this file if you want to add new environments to test (e.g.,
Expand Down
Loading