Skip to content

Commit

Permalink
--no-input in PipInstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
coobas committed Nov 5, 2022
1 parent 927dee9 commit ce619e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/installation/pip_installer.py
Expand Up @@ -46,7 +46,7 @@ def install(self, package: Package, update: bool = False) -> None:

return

args = ["install", "--no-deps"]
args = ["install", "--no-deps", "--no-input"]

if not package.is_direct_origin() and package.source_url:
assert package.source_reference is not None
Expand Down

0 comments on commit ce619e4

Please sign in to comment.