Skip to content

Commit

Permalink
better version handling (#44)
Browse files Browse the repository at this point in the history
* update to latest ultralytics

* improve version handling

* update hf hub package version
  • Loading branch information
fcakyon authored Jan 26, 2023
1 parent 0645bc4 commit 4ec078b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
huggingface_hub
huggingface_hub>=0.12.0
fire
ultralytics>=8.0.18,<8.0.21
ultralytics>=8.0.20,<8.0.21
sahi>=0.11.11,<0.12.0
pandas
2 changes: 1 addition & 1 deletion ultralyticsplus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .hf_utils import download_from_hub, push_to_hfhub
from .ultralytics_utils import YOLO, postprocess_classify_output, render_result

__version__ = "0.0.21"
__version__ = "0.0.22"
2 changes: 1 addition & 1 deletion ultralyticsplus/hf_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def generate_model_usage_markdown(
- Install [ultralyticsplus](https://github.com/fcakyon/ultralyticsplus):
```bash
pip install ultralyticsplus=={ultralyticsplus_version}
pip install ultralyticsplus=={ultralyticsplus_version} ultralytics=={ultralytics_version}
```
- Load model and perform prediction:
Expand Down

0 comments on commit 4ec078b

Please sign in to comment.