From ab6c3a53b94f54bc05e5f5aab93775aaa1864df8 Mon Sep 17 00:00:00 2001 From: kingbri Date: Sun, 4 Aug 2024 10:50:14 -0400 Subject: [PATCH] Start: Remove eager upgrade strategy This will upgrade second-level pinned dependencies to their latest versions which is not ideal. Signed-off-by: kingbri --- start.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/start.py b/start.py index e42f307..7eda6e1 100644 --- a/start.py +++ b/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()