@ -14,7 +14,7 @@ import concurrent
import ssl
from urllib.parse import urlparse
version = "V1.2"
version = "V1.2.1"
print(f"### Loading: ComfyUI-Manager ({version})")
@ -199,6 +199,10 @@ def get_installed_packages():
def is_installed(name):
name = name.strip()
if name.startswith('#'):
return True
pattern = r'([^<>!=]+)([<>!=]=?)'
match = re.search(pattern, name)