From 2fb9bb6f6945c230b2b4c7c5a9fba839207b7a75 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Sun, 21 Jul 2024 17:42:09 +0200 Subject: [PATCH] fix missing setuptools installation in workflow --- .github/workflows/test-and-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 1b593111..4f9555f4 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -128,6 +128,7 @@ jobs: - name: Build lib run: | pip install wheel + pip install setuptools python setup.py develop python setup.py bdist_wheel python setup.py sdist bdist_wheel @@ -160,6 +161,7 @@ jobs: - name: Build lib run: | pip install wheel + pip install setuptools python setup.py develop python setup.py bdist_wheel