mirror of https://github.com/Bing-su/adetailer.git
fix: install.py ultralytics
parent
7ae5d7abb7
commit
c999e8c9ed
|
|
@ -8,8 +8,10 @@ from importlib.metadata import version # python >= 3.8
|
||||||
from packaging.version import parse
|
from packaging.version import parse
|
||||||
|
|
||||||
import_name = {"py-cpuinfo": "cpuinfo", "protobuf": "google.protobuf"}
|
import_name = {"py-cpuinfo": "cpuinfo", "protobuf": "google.protobuf"}
|
||||||
custom_requirements = {"ultralytics": "ultralytics>=8.3.0,!=8.3.41,!=8.3.42"}
|
custom_requirements = {
|
||||||
excluded_versions = {"ultralytics": ("8.3.41", "8.3.42")}
|
"ultralytics": "ultralytics>=8.3.0,!=8.3.41,!=8.3.42,!=8.3.45,!=8.3.46"
|
||||||
|
}
|
||||||
|
excluded_versions = {"ultralytics": ("8.3.41", "8.3.42", "8.3.45", "8.3.46")}
|
||||||
|
|
||||||
|
|
||||||
def is_installed(
|
def is_installed(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue