diff --git a/docs/html/cli/pip_install.rst b/docs/html/cli/pip_install.rst index 9ebb6e3f78b..f92f78e9086 100644 --- a/docs/html/cli/pip_install.rst +++ b/docs/html/cli/pip_install.rst @@ -315,8 +315,12 @@ 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), + as ``setup.py`` does not exist for wheels. The ``--global-option`` and ``--install-option`` options are used to pass options to ``setup.py``. For example: diff --git a/news/9674.doc.rst b/news/9674.doc.rst new file mode 100644 index 00000000000..dd5b68420ec --- /dev/null +++ b/news/9674.doc.rst @@ -0,0 +1 @@ +Clarify that using per-requirement overrides disables the usage of wheels.