Update downloads.py current release (#7541)
Browse filesCo-authored-by: Glenn Jocher <[email protected]>
- utils/downloads.py +1 -1
utils/downloads.py
CHANGED
@@ -69,7 +69,7 @@ def attempt_download(file, repo='ultralytics/yolov5'): # from utils.downloads i
|
|
69 |
try:
|
70 |
tag = subprocess.check_output('git tag', shell=True, stderr=subprocess.STDOUT).decode().split()[-1]
|
71 |
except Exception:
|
72 |
-
tag = 'v6.
|
73 |
|
74 |
if name in assets:
|
75 |
safe_download(
|
|
|
69 |
try:
|
70 |
tag = subprocess.check_output('git tag', shell=True, stderr=subprocess.STDOUT).decode().split()[-1]
|
71 |
except Exception:
|
72 |
+
tag = 'v6.1' # current release
|
73 |
|
74 |
if name in assets:
|
75 |
safe_download(
|