We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
~=
I think there is a bug in latest commit of glob.manager_core.is_installed:
glob.manager_core.is_installed
ComfyUI-Manager/glob/manager_core.py
Line 265 in 4dffb5d
Line 303 in 4dffb5d
Plz run this simple test:
import re pattern = r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)' name = 'diffusers~=0.21.4' match = re.search(pattern, name) print(match.group(2)) # =
same issue: #1301
The text was updated successfully, but these errors were encountered:
FIXED: pip downgrade blacklisting doesn't work if ~= pattern
85a03e6
#1301 #1425
This is fixed.
Sorry, something went wrong.
I'm so sorry. But this issue has not been fixed.
The main problem is the wrong pattern.
- r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)' + r'([^<>!~=]+)([<>!~=]=?)([0-9.a-zA-Z]*)'
I want to create a PR to fix this.
No branches or pull requests
I think there is a bug in latest commit of
glob.manager_core.is_installed
:ComfyUI-Manager/glob/manager_core.py
Line 265 in 4dffb5d
ComfyUI-Manager/glob/manager_core.py
Line 303 in 4dffb5d
Plz run this simple test:
same issue: #1301
The text was updated successfully, but these errors were encountered: