diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2019-11-16 15:14:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-16 15:14:51 -0500 |
| commit | 402240c01964f078254c53ce9db7f1c816146225 (patch) | |
| tree | 1c793d24e0fb23bca6e0c8025ed412268a31957b /docs/setuptools.txt | |
| parent | a00798264cf4d55db28585cfc147050a4d579b52 (diff) | |
| parent | b8101f06532b1deab448e6e23d0a61eb125c62df (diff) | |
| download | external_python_setuptools-402240c01964f078254c53ce9db7f1c816146225.tar.gz external_python_setuptools-402240c01964f078254c53ce9db7f1c816146225.tar.bz2 external_python_setuptools-402240c01964f078254c53ce9db7f1c816146225.zip | |
Merge pull request #1830 from benoit-pierre/pip_wheels
drop easy_install script/command, re-implement `fetch_build_egg` to use pip
Diffstat (limited to 'docs/setuptools.txt')
| -rw-r--r-- | docs/setuptools.txt | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt index b7fdf410..7a6f957c 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -282,10 +282,11 @@ unless you need the associated ``setuptools`` feature. ``setup_requires`` 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 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 EGG-INFO metadata files. + attempt to obtain these (using pip if available) 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 + EGG-INFO metadata files. (Note: projects listed in ``setup_requires`` will NOT be automatically installed on the system where the setup script is being run. They are @@ -332,10 +333,10 @@ unless you need the associated ``setuptools`` feature. 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. 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. + command, ``setuptools`` will attempt to obtain these (using pip if + available). 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. New in 41.5.0: Deprecated the test command. |
