diff --git a/glob/manager_core.py b/glob/manager_core.py index 51e0a3f5..a61d19be 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -23,7 +23,7 @@ sys.path.append(glob_path) import cm_global from manager_util import * -version = [2, 55, 3] +version = [2, 55, 4] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') diff --git a/glob/security_check.py b/glob/security_check.py index 4aa1c82b..ac906633 100644 --- a/glob/security_check.py +++ b/glob/security_check.py @@ -34,17 +34,23 @@ Detailed information: https://old.reddit.com/r/comfyui/comments/1dbls5n/psa_if_y Execute following commands: {sys.executable} -m pip uninstall ultralytics {sys.executable} -m pip install ultralytics==8.3.40 + +And kill and remove /tmp/ultralytics_runner + The version 8.3.41 to 8.3.42 of the Ultralytics package you installed is compromised. Please uninstall that version and reinstall the latest version. -https://github.com/ltdrdata/ComfyUI-Impact-Pack/issues/843 +https://blog.comfy.org/comfyui-statement-on-the-ultralytics-crypto-miner-situation/ """, "ultralytics==8.3.42": f""" Execute following commands: {sys.executable} -m pip uninstall ultralytics {sys.executable} -m pip install ultralytics==8.3.40 +And kill and remove /tmp/ultralytics_runner + + The version 8.3.41 to 8.3.42 of the Ultralytics package you installed is compromised. Please uninstall that version and reinstall the latest version. -https://github.com/ltdrdata/ComfyUI-Impact-Pack/issues/843 +https://blog.comfy.org/comfyui-statement-on-the-ultralytics-crypto-miner-situation/ """ } diff --git a/pyproject.toml b/pyproject.toml index 721f6a59..ef5aeec0 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 = "2.55.3" +version = "2.55.4" license = { file = "LICENSE.txt" } dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]