Skip to content

Commit

Permalink
Remove --ignore-installed (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Jun 29, 2020
1 parent b5b0c9c commit b680cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kivy_ios/toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit b680cf1

Please sign in to comment.