Browse Source

fix: skip comment out package

pull/186/head
Dr.Lt.Data 1 year ago
parent
commit
860f7d367e
  1. 2
      __init__.py
  2. 4
      prestartup_script.py

2
__init__.py

@ -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})")

4
prestartup_script.py

@ -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)

Loading…
Cancel
Save