From 5d2140f0cad181693655fdae8ea13da5d2b10b75 Mon Sep 17 00:00:00 2001 From: Kai Chen Date: Tue, 14 Jul 2020 00:28:13 +0800 Subject: [PATCH] Install wheel before building mmseg (#14) --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0f66a64aa..b97273116 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,7 +13,9 @@ jobs: with: python-version: 3.7 - 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 run: | pip install twine