diff --git a/glob/manager_core.py b/glob/manager_core.py index 25f81180..cc6d56ed 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -42,7 +42,7 @@ import manager_downloader from node_package import InstalledNodePackage -version_code = [3, 17, 2] +version_code = [3, 17, 3] version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '') diff --git a/prestartup_script.py b/prestartup_script.py index 4539018b..ce85f5d5 100644 --- a/prestartup_script.py +++ b/prestartup_script.py @@ -429,8 +429,9 @@ except Exception as e: try: - import git # noqa: F401 + import git # noqa: F401 import toml # noqa: F401 + import rich # noqa: F401 except ModuleNotFoundError: my_path = os.path.dirname(__file__) requirements_path = os.path.join(my_path, "requirements.txt") diff --git a/pyproject.toml b/pyproject.toml index caadcb81..bd7b5712 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [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.17.2" +version = "3.17.3" license = { file = "LICENSE.txt" } dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]