Skip to content

Commit

Permalink
relax nm-yolov5 requirement (#2198)
Browse files Browse the repository at this point in the history
future releases of nm-yolov5 are not currently planned, moving forward the version requirement will be changed to `<=` so we do not need to create empty releases for compatibility
  • Loading branch information
bfineran authored Mar 27, 2024
1 parent ae121a5 commit b2cbece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
]
_llm_deps = _transformers_deps + ["sentencepiece"]
_yolov5_deps = _pytorch_vision_deps + [
f"{'nm-yolov5' if is_release else 'nm-yolov5-nightly'}~={version_nm_deps}"
f"{'nm-yolov5' if is_release else 'nm-yolov5-nightly'}<={version_nm_deps}"
]
_notebook_deps = [
"jupyter>=1.0.0",
Expand Down

0 comments on commit b2cbece

Please sign in to comment.