From 798b203274fdbaed70f3926a6dd6919789405cf0 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Mon, 19 May 2025 06:10:25 +0900 Subject: [PATCH] fixed: `cm_global` importing error --- comfyui_manager/common/manager_util.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comfyui_manager/common/manager_util.py b/comfyui_manager/common/manager_util.py index 6c0eb74a..c397130f 100644 --- a/comfyui_manager/common/manager_util.py +++ b/comfyui_manager/common/manager_util.py @@ -15,7 +15,7 @@ import re import logging import platform import shlex -import cm_global +from . import cm_global cache_lock = threading.Lock() diff --git a/pyproject.toml b/pyproject.toml index 8aa84345..9cb99d28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "comfyui-manager" license = { text = "GPL-3.0-only" } -version = "4.0.0-beta.3" +version = "4.0.0-beta.4" requires-python = ">= 3.9" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." readme = "README.md"