From: Harmon Date: Sat, 26 Dec 2020 02:16:42 +0000 (-0600) Subject: Explicitly install wheel in GitHub Actions Deploy workflow X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e17d8e7386f7763e85dab6b8d65456042d589194;p=tweepy.git Explicitly install wheel in GitHub Actions Deploy workflow As it's not required by Twine --- 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 }}