From c4695526ae18cc1543e24e1f98f3a24fb9802dbc Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 23 Dec 2020 14:18:03 -0600 Subject: [PATCH] Simplify dependency installation in GitHub Actions Deploy workflow Twine requires setuptools and wheel, so installing twine should already install both --- .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 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 }} -- 2.25.1