Remove --ignore-installed (#521)

This commit is contained in:
Mirko 2020-06-29 23:12:49 +02:00 committed by GitHub
parent b5b0c9cf4d
commit b680cf1d14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1173,7 +1173,7 @@ def _pip(args):
pip_path = join(ctx.dist_dir, 'hostpython3', 'bin', 'pip3')
if len(args) > 1 and args[0] == "install":
pip_args = ["--isolated", "--ignore-installed", "--prefix", ctx.python_prefix]
pip_args = ["--isolated", "--prefix", ctx.python_prefix]
args = ["install"] + pip_args + args[1:]
logger.error("Executing pip with: {}".format(args))