remove obsolete '=='

This commit is contained in:
Jake 2021-03-29 22:16:45 +08:00
parent e5924d14b3
commit 5dc02aa2fa

View File

@ -410,8 +410,6 @@ def dynamic_versioning(scheme, imports):
symbol = ">=" symbol = ">="
elif scheme == "compat": elif scheme == "compat":
symbol = "~=" symbol = "~="
else:
symbol = "=="
return imports, symbol return imports, symbol