From 62ee06ae4b6c7b5930f7f4507e588019d4a9f5e8 Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Tue, 12 Dec 2023 14:57:42 -0500 Subject: [PATCH] Update build_wheels.yml --- .github/workflows/build_wheels.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 279c037..680f533 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -25,7 +25,9 @@ jobs: architecture: ${{ matrix.arch }} - name: Install packages - run: pip install wheel + run: | + pip install wheel + pip install setuptools - name: build run: python setup.py bdist_wheel @@ -58,7 +60,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install packages - run: pip install wheel + run: | + pip install wheel + pip install setuptools - name: build run: python setup.py bdist_wheel