From cef000992039f03df61e6f156a8ed65ed98957a5 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Thu, 11 Jul 2024 23:36:39 +0100 Subject: [PATCH] Install setuptools for publish action --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 25a8949c..3559c5d0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,6 +17,8 @@ jobs: with: python-version: 3.x architecture: x64 + - name: Install setuptools + run: pip install setuptools - name: Build a source distribution run: python setup.py sdist - name: Publish to prod PyPI