We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8ea4f5 + c48d440 commit bb50b4aCopy full SHA for bb50b4a
agentstack/update.py
@@ -116,8 +116,6 @@ def check_for_updates(update_requested: bool = False):
116
if not update_requested and not should_update():
117
return
118
119
- log.info("Checking for updates...\n")
120
-
121
try:
122
latest_version: Version = get_latest_version(AGENTSTACK_PACKAGE)
123
except Exception as e:
@@ -133,7 +131,5 @@ def check_for_updates(update_requested: bool = False):
133
131
log.success(f"{AGENTSTACK_PACKAGE} updated. Re-run your command to use the latest version.")
134
132
else:
135
log.info("Skipping update. Run `agentstack update` to install the latest version.")
136
- else:
137
- log.info(f"{AGENTSTACK_PACKAGE} is up to date ({installed_version})")
138
139
record_update_check()
0 commit comments