From f572cbc360fd3ddf039da57f8a151afe98493ab5 Mon Sep 17 00:00:00 2001 From: Aaron Berdy Date: Tue, 21 Nov 2023 11:07:57 -0800 Subject: [PATCH] fix: install setuptools --- .github/workflows/twine-check.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/twine-check.yml b/.github/workflows/twine-check.yml index a6035204..1b87e48b 100644 --- a/.github/workflows/twine-check.yml +++ b/.github/workflows/twine-check.yml @@ -6,6 +6,9 @@ on: - main - feature/** +permissions: + contents: read + jobs: twine-check: name: Check long description @@ -20,6 +23,8 @@ jobs: run: python -m pip install --user --upgrade wheel - name: Install twine run: python -m pip install --user --upgrade twine + - name: Install setuptools + run: python -m pip install --user --upgrade setuptools - name: Build a binary wheel and a source tarball run: python setup.py sdist bdist_wheel - name: Check that long description will render correctly on PyPI.