Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions agentstack/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ def check_for_updates(update_requested: bool = False):
if not update_requested and not should_update():
return

log.info("Checking for updates...\n")

try:
latest_version: Version = get_latest_version(AGENTSTACK_PACKAGE)
except Exception as e:
Expand All @@ -133,7 +131,5 @@ def check_for_updates(update_requested: bool = False):
log.success(f"{AGENTSTACK_PACKAGE} updated. Re-run your command to use the latest version.")
else:
log.info("Skipping update. Run `agentstack update` to install the latest version.")
else:
log.info(f"{AGENTSTACK_PACKAGE} is up to date ({installed_version})")

record_update_check()
Loading