From 8d7a3aa1b3b9a4f306ff43187bde9c335d236c11 Mon Sep 17 00:00:00 2001 From: "dr.lt.data" Date: Thu, 18 Jan 2024 17:07:09 +0900 Subject: [PATCH] fix: required ComfyUI revision --- __init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index 00b460f4..544a30e0 100644 --- a/__init__.py +++ b/__init__.py @@ -28,12 +28,11 @@ except: print(f"[WARN] ComfyUI-Manager: Your ComfyUI version is outdated. Please update to the latest version.") -version = [2, 2, 2] +version = [2, 2, 3] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') print(f"### Loading: ComfyUI-Manager ({version_str})") -required_comfyui_revision = 1793 comfy_ui_hash = "-" cache_lock = threading.Lock()