Skip to content

Commit

Permalink
build(deps): bump pypa/cibuildwheel from 2.14.1 to 2.19.1 (#89)
Browse files Browse the repository at this point in the history
+ build(deps): bump pypa/cibuildwheel from 2.14.1 to 2.19.1

+ set `MACOSX_DEPLOYMENT_TARGET="13.0"` as the macos-13 runner is using macos 13.0 not 10.13:
https://setapp.com/how-to/full-list-of-all-macos-versions

+ unset `SETUPTOOLS_USE_DISTUTILS=stdlib` as it's not needed anymore

---------

Co-authored-by: Joseph H Kennedy <[email protected]>
Co-authored-by: Zhang Yunjun <[email protected]>
  • Loading branch information
3 people authored Jun 27, 2024
1 parent ddd51b0 commit 617113b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
echo "[build]`ncompiler=mingw32" | Out-File -Encoding ASCII ~/pydistutils.cfg
- name: Build wheels
uses: pypa/cibuildwheel@v2.14.1
uses: pypa/cibuildwheel@v2.19.1
env:
# Disable building for PyPy and 32bit.
CIBW_SKIP: pp* *-win32 *-manylinux_i686
# Fix error for python 3.11 on macOS
CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET="13.0"
CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip
# Package the DLL dependencies in the wheel for windows (done by default for the other platforms).
# delvewheel cannot mangle the libraries, stripping does not work.
CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel
Expand Down

0 comments on commit 617113b

Please sign in to comment.