From e9bdeadec1c0585fc6af5d04317eeca215db0327 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Fri, 7 Mar 2025 16:07:45 -0500 Subject: [PATCH] update CI yaml for building wheels --- .github/workflows/build-cibw.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-cibw.yml b/.github/workflows/build-cibw.yml index 987c1645c..f0b93aef1 100644 --- a/.github/workflows/build-cibw.yml +++ b/.github/workflows/build-cibw.yml @@ -142,11 +142,11 @@ jobs: # Use build instead of pip wheel to build the wheels. This is recommended by PyPA. # See https://cibuildwheel.pypa.io/en/stable/options/#build-frontend. CIBW_BUILD_FRONTEND: "build" - CIBW_BEFORE_ALL: bash {project}/build_tools/wheels/cibw_before_all.sh ${{ matrix.python_version }} {project} + CIBW_BEFORE_ALL: bash .github/scripts/python_wheels/cibw_before_all.sh ${{ matrix.python_version }} {project} CIBW_BUILD_VERBOSITY: 1 - run: bash build_tools/wheels/build_wheels.sh + run: bash .github/scripts/python_wheels/build_wheels.sh - name: Store artifacts uses: actions/upload-artifact@v4