-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8093 from pradyunsg/better-docs-for-in-place-builds
- Loading branch information
Showing
2 changed files
with
15 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
Building of local directories is now done in place. Previously pip did copy the | ||
local directory tree to a temporary location before building. That approach had | ||
a number of drawbacks, among which performance issues, as well as various | ||
issues arising when the python project directory depends on its parent | ||
directory (such as the presence of a VCS directory). The user visible effect of | ||
this change is that secondary build artifacts, if any, may therefore be created | ||
in the local directory, whereas before they were created in a temporary copy of | ||
the directory and then deleted. This notably includes the ``build`` and | ||
``.egg-info`` directories in the case of the setuptools build backend. | ||
Building of local directories is now done in place, instead of a temporary | ||
location containing a copy of the directory tree. |