Start: Remove eager upgrade strategy
This will upgrade second-level pinned dependencies to their latest versions which is not ideal. Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
parent
8ff2586d45
commit
ab6c3a53b9
1 changed files with 1 additions and 3 deletions
4
start.py
4
start.py
|
|
@ -202,9 +202,7 @@ if __name__ == "__main__":
|
|||
features = f"[{install_features}]" if install_features else ""
|
||||
|
||||
# pip install .[features]
|
||||
# Make sure to use eager upgrade strategy
|
||||
# to push packages to their latest versions
|
||||
install_command = f"pip install -U --upgrade-strategy eager .{features}"
|
||||
install_command = f"pip install -U .{features}"
|
||||
print(f"Running install command: {install_command}")
|
||||
subprocess.run(install_command.split(" "))
|
||||
print()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue