Skip to content
Merged
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
5 changes: 3 additions & 2 deletions docs/user/build-customization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,7 @@ Install dependencies from Dependency Groups
Python `Dependency Groups <https://packaging.python.org/en/latest/specifications/dependency-groups/>`_
are a way of storing lists of dependencies in your ``pyproject.toml``.

``pip`` version 25.1 and later, which is the default for Read the Docs builds,
as well as many other tools support Dependency Groups.
``pip`` version 25.1+ as well as many other tools support Dependency Groups.
This example uses ``pip`` and installs from a group named ``docs``:

.. code-block:: yaml
Expand All @@ -505,6 +504,8 @@ This example uses ``pip`` and installs from a group named ``docs``:
python: "3.13"
jobs:
install:
# Since the install step is overridden, pip is no longer updated automatically.
- pip install --upgrade pip
- pip install --group 'docs'

For more information on relevant ``pip`` usage, see the
Expand Down