Skip to content

Commit ec68159

Browse files
committed
tweak output when installing PEP 518 build dependencies
Suppress warnings about out-of-PATH script installs.
1 parent d2cea7e commit ec68159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/build_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def cleanup(self):
7575
def install_requirements(self, finder, requirements, message):
7676
args = [
7777
sys.executable, '-m', 'pip', 'install', '--ignore-installed',
78-
'--no-user', '--prefix', self.path,
78+
'--no-user', '--prefix', self.path, '--no-warn-script-location',
7979
'--only-binary', ':all:',
8080
]
8181
if finder.index_urls:

0 commit comments

Comments
 (0)