Skip to content

Commit

Permalink
Merge pull request #10536 from pradyunsg/docs/fix-wordin
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Oct 22, 2021
1 parent 457564c commit 37aef10
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions docs/html/reference/build-system/setup-py.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ depending on the package), the generated wheel is added to pip's wheel cache
and will be used for this installation. The built wheel is cached locally
by pip to avoid repeated identical builds.

If this wheel generation fails, pip will attempt a direct installation instead.
If this wheel generation fails, pip runs `setup.py clean` to clean up any build
artifacts that may have been generated. After that, pip will attempt a direct
installation.

### Direct Installation

Expand All @@ -70,11 +72,6 @@ For installing packages in "editable" mode
`setup.py develop`, which will use setuptools' mechanisms to perform an
editable/development installation.

### Cleanup

After attempting installation, pip may run `setup.py clean` to clean up build
artifacts from that setuptools has generated.

## Setuptools Injection

To support projects that directly use `distutils`, pip injects `setuptools` into
Expand Down

0 comments on commit 37aef10

Please sign in to comment.