From a542695e9ceb0233242a5953d5bc076931d6bc61 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Thu, 18 Dec 2025 18:45:31 +0900 Subject: [PATCH] chore: bump version to 4.0.3b6 and fix git_helper path - Update version from 4.0.3b5 to 4.0.3b6 in pyproject.toml - Fix git_helper.py path to include 'common' subdirectory in context.py --- comfyui_manager/common/context.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comfyui_manager/common/context.py b/comfyui_manager/common/context.py index de4de1db..eae152ad 100644 --- a/comfyui_manager/common/context.py +++ b/comfyui_manager/common/context.py @@ -22,7 +22,7 @@ if comfy_base_path is None: comfy_base_path = comfy_path channel_list_template_path = os.path.join(manager_util.comfyui_manager_path, 'channels.list.template') -git_script_path = os.path.join(manager_util.comfyui_manager_path, "git_helper.py") +git_script_path = os.path.join(manager_util.comfyui_manager_path, "common", "git_helper.py") manager_files_path = None manager_config_path = None diff --git a/pyproject.toml b/pyproject.toml index 226e90e6..78eef4e3 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.3b5" +version = "4.0.3b6" 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"