force pip to install aider's deps

This commit is contained in:
Paul Gauthier 2024-09-26 11:47:05 -07:00
parent 6b6f682a94
commit 50fb95c8b1
2 changed files with 4 additions and 2 deletions

View file

@ -21,7 +21,7 @@ def install_from_main_branch(io):
io,
None,
"Install the development version of aider from the main branch?",
["--upgrade", "git+https://github.com/paul-gauthier/aider.git"],
["git+https://github.com/paul-gauthier/aider.git"],
self_update=True,
)
@ -50,7 +50,7 @@ def install_upgrade(io, latest_version=None):
io,
None,
new_ver_text,
["--upgrade", "aider-chat"],
["aider-chat"],
self_update=True,
)