diff --git a/docs/html/cli/pip_install.rst b/docs/html/cli/pip_install.rst
index de2c4d4c8b8..5747cc14a6d 100644
--- a/docs/html/cli/pip_install.rst
+++ b/docs/html/cli/pip_install.rst
@@ -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:
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.