Skip to content

Commit 9aee055

Browse files
committed
Add CLI of yolov8 convert
1 parent 9ba0533 commit 9aee055

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/gen_whl_to_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
pip install -r requirements.txt
5252
python -m pip install --upgrade pip
5353
pip install wheel get_pypi_latest_version
54-
python setup.py bdist_wheel ${{ github.event.head_commit.message }}
54+
python setup.py bdist_wheel ${{ github.ref_name }}
5555
5656
# - name: Publish distribution 📦 to Test PyPI
5757
# uses: pypa/[email protected]

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ def get_readme() -> str:
8282
f"yolov5_yaml_to_coco={MODULE_NAME}.yolov5_yaml_to_coco:main",
8383
f"labelImg_to_publaynet={MODULE_NAME}.labelImg_to_publaynet:main",
8484
f"labelme_to_coco={MODULE_NAME}.labelme_to_coco:main",
85+
f"yolov5_to_yolov8={MODULE_NAME}.yolov5_to_yolov8:main",
86+
f"yolov8_to_yolov5={MODULE_NAME}.yolov8_to_yolov5:main",
8587
],
8688
},
8789
)

0 commit comments

Comments
 (0)