diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-05-06 10:30:18 +0100 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-05-06 10:30:18 +0100 |
| commit | 67126f0735cecd1e5439b057f5cc8defa07f3215 (patch) | |
| tree | 0f8c2cee52d01c297eba87832e194cbb5bc5b7ef /docs | |
| parent | 88e578445bdc18a0612a8b5980b5ed10d8476a8b (diff) | |
| download | python-setuptools-git-67126f0735cecd1e5439b057f5cc8defa07f3215.tar.gz | |
Avoid mentioning that pip is used for download
It seems that setuptools currently uses its own mechanism for downloading
dependencies (setuptools/package_index.py).
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/references/keywords.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/references/keywords.rst b/docs/references/keywords.rst index 463e6e8b..f0527859 100644 --- a/docs/references/keywords.rst +++ b/docs/references/keywords.rst @@ -223,7 +223,7 @@ Keywords A string or list of strings specifying what other distributions need to be present in order for the *setup script* to run. ``setuptools`` will - attempt to obtain these (using pip if available) before processing the + attempt to obtain these before processing the rest of the setup script or commands. This argument is needed if you are using distutils extensions as part of your build process; for example, extensions that process setup() arguments and turn them into @@ -280,8 +280,8 @@ Keywords needed to install it, you can use this option to specify them. It should be a string or list of strings specifying what other distributions need to be present for the package's tests to run. When you run the ``test`` - command, ``setuptools`` will attempt to obtain these (using pip if - available). Note that these required projects will *not* be installed on + command, ``setuptools`` will attempt to obtain these. + Note that these required projects will *not* be installed on the system where the tests are run, but only downloaded to the project's setup directory if they're not already installed locally. |
