From 942650083b14fc5c7b30d66cf62b16c8bb8a5221 Mon Sep 17 00:00:00 2001 From: Ben Bariteau Date: Tue, 25 Jun 2024 14:37:50 -0700 Subject: [PATCH] install setuptools in publish action to fix it --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1b9b820..43db6e3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,7 +19,7 @@ jobs: python-version: 3.12 - name: Install Python dependencies - run: pip install wheel + run: pip install wheel setuptools - name: Create a Wheel file and source distribution run: python setup.py sdist bdist_wheel