From e17d8e7386f7763e85dab6b8d65456042d589194 Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 25 Dec 2020 20:16:42 -0600 Subject: [PATCH] Explicitly install wheel in GitHub Actions Deploy workflow As it's not required by Twine --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f0c5f70..a65cab0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install twine + pip install twine wheel - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} -- 2.25.1