Install wheel before building mmseg (#14)

This commit is contained in:
Kai Chen 2020-07-14 00:28:13 +08:00 committed by GitHub
parent bc285bea28
commit 5d2140f0ca

View File

@ -13,7 +13,9 @@ jobs:
with: with:
python-version: 3.7 python-version: 3.7
- name: Build MMSegmentation - name: Build MMSegmentation
run: python setup.py sdist bdist_wheel run: |
pip install wheel
python setup.py sdist bdist_wheel
- name: Publish distribution to PyPI - name: Publish distribution to PyPI
run: | run: |
pip install twine pip install twine