From e60af1fc514340ea8f9f98b4ea8635059e4ae6a0 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Wed, 6 Dec 2023 13:13:10 +0100 Subject: [PATCH] Also install setuptools on publication --- .github/workflows/publish_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index da4a4d2..e64f694 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/setup-python@v2 - name: Build a binary wheel and a source tarball run: | - python -mpip install wheel versioneer + python -mpip install setuptools versioneer wheel python setup.py sdist bdist_wheel - name: Publish distribution to PyPI if: startsWith(github.ref, 'refs/tags')