From e73c78e29228afdb2b027501f0ce48d4e61ac966 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Fri, 21 Mar 2025 15:16:43 -0400 Subject: [PATCH] wip --- comfy/comfy_types/node_typing.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/comfy/comfy_types/node_typing.py b/comfy/comfy_types/node_typing.py index 1b71208d..22f4f1bb 100644 --- a/comfy/comfy_types/node_typing.py +++ b/comfy/comfy_types/node_typing.py @@ -220,6 +220,13 @@ class ComfyNodeABC(ABC): """Flags a node as experimental, informing users that it may change or not work as expected.""" DEPRECATED: bool """Flags a node as deprecated, indicating to users that they should find alternatives to this node.""" + REQUIRED_FRONTEND_VERSION: str + """The minimum version of the ComfyUI frontend required to load this node. + + Usage:: + + REQUIRED_FRONTEND_VERSION = "1.9.7" + """ @classmethod @abstractmethod