From c48d440b21d0714d23079b28d06f880872ff8f3f Mon Sep 17 00:00:00 2001 From: Braelyn Boynton Date: Thu, 16 Jan 2025 21:35:23 -0800 Subject: [PATCH] update silently --- agentstack/update.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/agentstack/update.py b/agentstack/update.py index 52d7aa3d..d3d8dcac 100644 --- a/agentstack/update.py +++ b/agentstack/update.py @@ -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: @@ -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()