From b37f0bab9995c3b418710ccb096c9ef4ac9ee70e Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Tue, 16 Jun 2026 02:17:02 +0900 Subject: [PATCH] bump version to v3.41 --- glob/manager_core.py | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/glob/manager_core.py b/glob/manager_core.py index b2beb3bd..63ce1e4b 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -44,7 +44,7 @@ import manager_migration from node_package import InstalledNodePackage -version_code = [3, 40] +version_code = [3, 41] version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '') diff --git a/pyproject.toml b/pyproject.toml index 8a154cef..8bc2ff14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,9 @@ [project] name = "comfyui-manager" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." -version = "3.40" +version = "3.41" license = { file = "LICENSE.txt" } +requires-python = ">=3.9" dependencies = ["GitPython", "PyGithub", "matrix-nio", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions", "toml", "uv", "chardet"] [project.urls]