File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Installation
7
7
8
8
You can install the latest version of ``setuptools `` using :pypi: `pip `::
9
9
10
- pip install --upgrade setuptools
10
+ pip install --upgrade setuptools[core]
11
11
12
12
Most of the times, however, you don't have to...
13
13
@@ -56,6 +56,16 @@ containing a ``build-system`` section similar to the example below:
56
56
This section declares what are your build system dependencies, and which
57
57
library will be used to actually do the packaging.
58
58
59
+ .. note ::
60
+
61
+ Package maintainers might be tempted to use ``setuptools[core] `` as the
62
+ requirement, given the guidance above. Avoid doing so, as the extra
63
+ is currently considered an internal implementation detail and is likely
64
+ to go away in the future and the Setuptools team will not support
65
+ compatibility for problems arising from packages published with this
66
+ extra declared. Vendored packages will satisfy the dependencies in
67
+ the most common isolated build scenarios.
68
+
59
69
.. note ::
60
70
61
71
Historically this documentation has unnecessarily listed ``wheel ``
You can’t perform that action at this time.
0 commit comments