Skip to content

Commit

Permalink
Bump pypa/cibuildwheel from 2.17.0 to 2.18.0 (#360)
Browse files Browse the repository at this point in the history
* Bump pypa/cibuildwheel from 2.17.0 to 2.18.0

Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.17.0 to 2.18.0.
- [Release notes](https://github.com/pypa/cibuildwheel/releases)
- [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md)
- [Commits](pypa/cibuildwheel@v2.17.0...v2.18.0)

---
updated-dependencies:
- dependency-name: pypa/cibuildwheel
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Pin libcxx for wheel build

* Set args for correct architecture

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Uwe L. Korn <uwe.korn@quantco.com>
  • Loading branch information
dependabot[bot] and xhochy committed May 13, 2024
1 parent 70e771e commit 4304589
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:

- name: Build wheels
if: github.event_name != 'release'
uses: pypa/cibuildwheel@v2.17.0
uses: pypa/cibuildwheel@v2.18.0
env:
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_TEST_SKIP: '*-macosx_arm64'

- name: Build wheels (release)
if: github.event_name == 'release' && github.event.action == 'published'
uses: pypa/cibuildwheel@v2.17.0
uses: pypa/cibuildwheel@v2.18.0
env:
CIBW_ARCHS_LINUX: x86_64 aarch64
CIBW_ARCHS_MACOS: x86_64 arm64
Expand Down
4 changes: 3 additions & 1 deletion build_tools/prepare_macos_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ if [[ "${ARCHFLAGS:-}" == *arm64 ]]; then
export CONDA_SUBDIR="osx-arm64"
else
export CONDA_SUBDIR="osx-64"
# libcxx>=17 needs osx 10.13, cibuildwheel wants 10.9
export CONDA_ARGS=" libcxx<17"
fi

/Users/runner/micromamba-bin/micromamba create -y -p $CONDA/envs/build -c conda-forge jemalloc-local "xsimd<11|>12.1" llvm-openmp
/Users/runner/micromamba-bin/micromamba create -y -p $CONDA/envs/build -c conda-forge jemalloc-local "xsimd<11|>12.1" llvm-openmp ${CONDA_ARGS:-}

0 comments on commit 4304589

Please sign in to comment.