Explicitly install wheel in GitHub Actions Deploy workflow
authorHarmon <Harmon758@gmail.com>
Sat, 26 Dec 2020 02:16:42 +0000 (20:16 -0600)
committerHarmon <Harmon758@gmail.com>
Sat, 26 Dec 2020 02:16:42 +0000 (20:16 -0600)
As it's not required by Twine

.github/workflows/deploy.yml

index f0c5f70516e82557fcc0fa1f960049bd52ca8eb8..a65cab06563d509ebdfad1b3161395882d0d1c91 100644 (file)
@@ -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 }}