Simplify dependency installation in GitHub Actions Deploy workflow
authorHarmon <Harmon758@gmail.com>
Wed, 23 Dec 2020 20:18:03 +0000 (14:18 -0600)
committerHarmon <Harmon758@gmail.com>
Wed, 23 Dec 2020 20:18:03 +0000 (14:18 -0600)
Twine requires setuptools and wheel, so installing twine should already install both

.github/workflows/deploy.yml

index 4cb693ae87e486991608696958ed48a0ed4c14b7..80a2eb8892311399dac451ea774280391a01e512 100644 (file)
@@ -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 }}