You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by jm...@apache.org on 2024/01/19 21:46:39 UTC

(datasketches-python) branch update_build_wheels created (now 3d757d7)

This is an automated email from the ASF dual-hosted git repository.

jmalkin pushed a change to branch update_build_wheels
in repository https://gitbox.apache.org/repos/asf/datasketches-python.git


      at 3d757d7  Update build_wheels.yml

This branch includes the following new commits:

     new 3d757d7  Update build_wheels.yml

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


(datasketches-python) 01/01: Update build_wheels.yml

Posted by jm...@apache.org.
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-python.git

commit 3d757d7e899d01430382b318b52835f5eb455c9e
Author: Jon Malkin <78...@users.noreply.github.com>
AuthorDate: Fri Jan 19 13:46:34 2024 -0800

    Update build_wheels.yml
    
    * Use range for `cibuildwheel`
    * Specify MacOS versiont arget (pre-10.14 doesn't work with current compilation parameters)
    * Remove Pypy wheels
---
 .github/workflows/build_wheels.yml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml
index 3b9544a..c459e2d 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -82,7 +82,7 @@ jobs:
           platforms: arm64
 
       - name: Install Python dependencies
-        run: python -m pip install cibuildwheel==2.16.2
+        run: python -m pip install cibuildwheel>=2.16.2,<3.0
 
       - name: Build wheels
         run: python -m cibuildwheel --output-dir dist
@@ -93,8 +93,9 @@ jobs:
           CIBW_BUILD: "*-${{ matrix.config.cibw-arch }}"
           CIBW_BEFORE_BUILD_LINUX: "yum remove -y cmake"
           CIBW_BEFORE_BUILD: "python -m pip install cmake>=3.18"
-          CIBW_SKIP: "*-win32 pp*-aarch64 pp*-macosx"
-
+          CIBW_SKIP: "*-win32 pp* cp36-* cp37-*"
+          MACOSX_DEPLOYMENT_TARGET: 10.14
+          
       - uses: actions/upload-artifact@v3
         with:
           path: ./dist/*.whl


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org