From 8d7f06fd619031f572a480ed197275d4f8f4b03b Mon Sep 17 00:00:00 2001 From: Srinivas Edireswarapu - I17752 Date: Tue, 8 Oct 2024 19:13:11 +0530 Subject: [PATCH] Add setuptools and whl deps --- .github/workflows/build.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ad962c68..2ec1818c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,18 +80,20 @@ jobs: echo "skip_build=true" >> $GITHUB_ENV # Set an environment variable to control flow fi + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install setuptools wheel # Install setuptools and wheel + - name: Install USB dependencies run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev - - name: Install string library build dependencies - run: sudo apt-get install build-essential libc-dev libbsd-dev - - name: Build sdist if: env.skip_build != 'true' run: | - echo $TAG_NAME + echo ${{ env.TAG_NAME }} cd python - echo $TAG_NAME >VERSION + echo ${{ env.TAG_NAME }} >VERSION cp -r ../lib . cp -r ../third_party . mkdir app