Skip to content

Commit

Permalink
Merge pull request #4507 from pypa/docs/4483-install-core-extra
Browse files Browse the repository at this point in the history
Add guidance on core dependencies
  • Loading branch information
jaraco committed Jul 28, 2024
2 parents 08bd311 + 99d2c72 commit be8e3a0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/userguide/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Installation

You can install the latest version of ``setuptools`` using :pypi:`pip`::

pip install --upgrade setuptools
pip install --upgrade setuptools[core]

Most of the times, however, you don't have to...

Expand Down Expand Up @@ -56,6 +56,16 @@ containing a ``build-system`` section similar to the example below:
This section declares what are your build system dependencies, and which
library will be used to actually do the packaging.

.. note::

Package maintainers might be tempted to use ``setuptools[core]`` as the
requirement, given the guidance above. Avoid doing so, as the extra
is currently considered an internal implementation detail and is likely
to go away in the future and the Setuptools team will not support
compatibility for problems arising from packages published with this
extra declared. Vendored packages will satisfy the dependencies in
the most common isolated build scenarios.

.. note::

Historically this documentation has unnecessarily listed ``wheel``
Expand Down

0 comments on commit be8e3a0

Please sign in to comment.