From 96988c87705837eaa27ddd44cafe146d1f2b9ddd Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Sat, 30 Dec 2023 02:52:01 +0000 Subject: [PATCH] Fix PyPI test with missing setuptools --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c06ae076..6415b3df 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -63,6 +63,9 @@ jobs: uses: actions/setup-python@v4 with: python-version: 3.9 + - name: Install setuptools and wheel + run: | + python -m pip install --user setuptools wheel - name: Download from TestPyPI run: | pip download --dest dist --no-deps --index-url https://test.pypi.org/simple/ ${{ matrix.package }}