This is an automated email from the ASF dual-hosted git repository. jmalkin pushed a commit to branch update_build_wheels in repository https://gitbox.apache.org/repos/asf/datasketches-cpp.git
commit a4f0a6add4ccf630a8fea7cfb1fc587dfab68984 Author: Jon Malkin <[email protected]> AuthorDate: Thu Sep 22 17:44:30 2022 -0700 Try to fix Apple Silicon build Not sure if this will work! --- .github/workflows/build_wheels.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 8a8ad9d..4deffee 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -62,15 +62,17 @@ jobs: with: python-version: '3.x' - - name: Install Python dependencies - run: python -m pip install cibuildwheel==2.5.0 + #- name: Install Python dependencies + # run: python -m pip install cibuildwheel==2.5.0 - name: Build wheels - run: python -m cibuildwheel --output-dir dist + uses: pypa/[email protected] + #run: python -m cibuildwheel --output-dir dist env: + MACOSX_DEPLOYMENT_TARGET: 10.15 CIBW_BEFORE_BUILD: python -m pip install cmake>=3.18 CIBW_SKIP: "*-win32 pp*-macosx*" - CIBW_ARCHS_MACOS: "x86_64 arm64 universal2" + CIBW_ARCHS_MACOS: "x86_64 arm64" - uses: actions/upload-artifact@v2 with: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
