Skip to content

Commit

Permalink
try adding back --no-update here..
Browse files Browse the repository at this point in the history
  • Loading branch information
deeleeramone committed Jan 8, 2025
1 parent d126677 commit 7113afe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openbb_platform/dev_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def install_platform_local(_extras: bool = False):
extras_args = ["-E", "all"] if _extras else []

subprocess.run(
CMD + ["lock"],
CMD + ["lock", "--no-update"],
cwd=PLATFORM_PATH,
check=True,
)
Expand Down Expand Up @@ -192,7 +192,7 @@ def install_platform_cli():
CMD = [sys.executable, "-m", "poetry"]

subprocess.run(
CMD + ["lock"],
CMD + ["lock", "--no-update"],
cwd=CLI_PATH,
check=True, # noqa: S603
)
Expand Down

0 comments on commit 7113afe

Please sign in to comment.