Skip to content

Commit 95ab23d

Browse files
authored
Merge branch 'develop' into feature/package-builder-from-fastapi
2 parents efbbdf6 + a5e87da commit 95ab23d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openbb_platform/dev_install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def install_platform_local(_extras: bool = False):
142142
extras_args = ["-E", "all"] if _extras else []
143143

144144
subprocess.run(
145-
CMD + ["lock"],
145+
CMD + ["lock", "--regenerate"],
146146
cwd=PLATFORM_PATH,
147147
check=True,
148148
)
@@ -187,7 +187,7 @@ def install_platform_cli():
187187
CMD = [sys.executable, "-m", "poetry"]
188188

189189
subprocess.run(
190-
CMD + ["lock"],
190+
CMD + ["lock", "--regenerate"],
191191
cwd=CLI_PATH,
192192
check=True, # noqa: S603
193193
)

0 commit comments

Comments
 (0)