Merge pull request #9674 from mobolic/document-that-overrides-disable-all-wheels

This commit is contained in:
Pradyun Gedam 2022-01-31 07:50:35 +00:00 committed by GitHub
commit 193259d3dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -205,8 +205,11 @@ Per-requirement Overrides
-------------------------
Since version 7.0 pip supports controlling the command line options given to
``setup.py`` via requirements files. This disables the use of wheels (cached or
otherwise) for that package, as ``setup.py`` does not exist for wheels.
``setup.py`` via requirements files.
.. warning::
This disables the use of wheels (cached or otherwise).
The ``--global-option`` and ``--install-option`` options are used to pass
options to ``setup.py``. For example:

1
news/9674.doc.rst Normal file
View File

@ -0,0 +1 @@
Clarify that using per-requirement overrides disables the usage of wheels.