File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
src/pip/_internal/operations Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -216,15 +216,13 @@ def unpack_url(
216
216
# be removed.
217
217
if link .is_existing_dir ():
218
218
deprecated (
219
- "pip currently copies the source tree into a temporary directory "
220
- "before building it. In the future, pip will build packages in-place "
221
- "within the original source tree (\" in-tree build\" ). Before the "
222
- "default behavior changes, we recommend testing your packages by "
223
- "adding the --use-feature=in-tree-build argument. Regarding the "
224
- "current out-of-tree default build behavior,\n " ,
219
+ reason = "pip copied the source tree into a temporary directory "
220
+ "before building it. This is changing so that packages are built in-place "
221
+ 'within the original source tree ("in-tree build").' ,
225
222
replacement = None ,
226
223
gone_in = "21.3" ,
227
- issue = 7555
224
+ feature_flag = "in-tree-build" ,
225
+ issue = 7555 ,
228
226
)
229
227
if os .path .isdir (location ):
230
228
rmtree (location )
You can’t perform that action at this time.
0 commit comments