tweak output when installing PEP 518 build dependencies

Suppress warnings about out-of-PATH script installs.
This commit is contained in:
Benoit Pierre 2018-04-19 09:49:35 +02:00
parent 7b4790d0ca
commit 1ac5f09911
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class BuildEnvironment(object):
def install_requirements(self, finder, requirements, message):
args = [
sys.executable, '-m', 'pip', 'install', '--ignore-installed',
'--no-user', '--prefix', self.path,
'--no-user', '--prefix', self.path, '--no-warn-script-location',
'--only-binary', ':all:',
]
if finder.index_urls: