Enforce blank lines before directive-blocks

This commit is contained in:
Pradyun Gedam 2020-02-11 18:40:42 +05:30
parent 4089cdd0de
commit 2d87d5f689
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
8 changed files with 11 additions and 0 deletions

View File

@ -1,4 +1,5 @@
.. note::
This section of the documentation is currently being written. pip
developers welcome your help to complete this documentation. If you're
interested in helping out, please let us know in the `tracking issue`_.

View File

@ -3,11 +3,13 @@ Architecture of pip's internals
===============================
.. note::
This section of the documentation is currently being written. pip
developers welcome your help to complete this documentation. If you're
interested in helping out, please let us know in the `tracking issue`_.
.. note::
Direct use of pip's internals is *not supported*, and these internals
can change at any time. For more details, see :ref:`Using pip from
your program`.

View File

@ -1,4 +1,5 @@
.. note::
This section of the documentation is currently being written. pip
developers welcome your help to complete this documentation. If you're
interested in helping out, please let us know in the `tracking issue`_.

View File

@ -1,4 +1,5 @@
.. note::
This section of the documentation is currently being written. pip
developers welcome your help to complete this documentation. If you're
interested in helping out, please let us know in the `tracking issue`_.

View File

@ -1,4 +1,5 @@
.. note::
This section of the documentation is currently being written. pip
developers welcome your help to complete this documentation. If you're
interested in helping out, please let us know in the

View File

@ -14,6 +14,7 @@ Usage
.. warning::
This command is only meant for debugging.
Its options and outputs are provisional and may change without notice.

View File

@ -74,6 +74,7 @@ Installation Order
------------------
.. note::
This section is only about installation order of runtime dependencies, and
does not apply to build dependencies (those are specified using PEP 518).
@ -676,6 +677,7 @@ Hash-checking mode also works with :ref:`pip download` and :ref:`pip wheel`. A
<Repeatability>` is available in the User Guide.
.. warning::
Beware of the ``setup_requires`` keyword arg in :file:`setup.py`. The
(rare) packages that use it will cause those dependencies to be downloaded
by setuptools directly, skipping pip's hash-checking. If you need to use
@ -683,6 +685,7 @@ Hash-checking mode also works with :ref:`pip download` and :ref:`pip wheel`. A
setup_requires<controlling-setup-requires>`.
.. warning::
Be careful not to nullify all your security work when you install your
actual project by using setuptools directly: for example, by calling
``python setup.py install``, ``python setup.py develop``, or

View File

@ -753,6 +753,7 @@ Hash-checking mode can be used along with this method to ensure that future
archives are built with identical packages.
.. warning::
Finally, beware of the ``setup_requires`` keyword arg in :file:`setup.py`.
The (rare) packages that use it will cause those dependencies to be
downloaded by setuptools directly, skipping pip's protections. If you need