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:
kingbri 2024-08-04 10:50:14 -04:00
parent 8ff2586d45
commit ab6c3a53b9

View file

@ -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()