Skip to content

Commit

Permalink
fix: install.py ultralytics
Browse files Browse the repository at this point in the history
  • Loading branch information
Bing-su committed Dec 7, 2024
1 parent 7ae5d7a commit c999e8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
from packaging.version import parse

import_name = {"py-cpuinfo": "cpuinfo", "protobuf": "google.protobuf"}
custom_requirements = {"ultralytics": "ultralytics>=8.3.0,!=8.3.41,!=8.3.42"}
excluded_versions = {"ultralytics": ("8.3.41", "8.3.42")}
custom_requirements = {
"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(
Expand Down

0 comments on commit c999e8c

Please sign in to comment.