From: Harmon Date: Wed, 23 Dec 2020 20:18:03 +0000 (-0600) Subject: Simplify dependency installation in GitHub Actions Deploy workflow X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c4695526ae18cc1543e24e1f98f3a24fb9802dbc;p=tweepy.git Simplify dependency installation in GitHub Actions Deploy workflow Twine requires setuptools and wheel, so installing twine should already install both --- diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4cb693a..80a2eb8 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 setuptools wheel twine + pip install twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}