Skip to content

Commit ea59ab5

Browse files
authored
Merge pull request #117 from storpipfugl/dependabot/github_actions/pypa/cibuildwheel-2.19.1
Bump pypa/cibuildwheel from 2.18.1 to 2.19.1
2 parents f2c9a7e + 0569644 commit ea59ab5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/deploy-wheels.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- os: windows-2019
3737
cibw_archs: "AMD64 ARM64"
3838
artifact_name: "win"
39-
- os: macos-11
39+
- os: macos-12
4040
cibw_archs: "x86_64 arm64"
4141
artifact_name: "mac"
4242
- os: "ubuntu-20.04"
@@ -58,13 +58,16 @@ jobs:
5858
platforms: all
5959

6060
- name: Build wheels
61-
uses: pypa/cibuildwheel@v2.18.1
61+
uses: pypa/cibuildwheel@v2.19.1
6262
env:
6363
CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *i686 *-musllinux_aarch64"
6464
CIBW_ARCHS: "${{ matrix.cibw_archs }}"
6565
CIBW_TEST_COMMAND: "pytest -v --pyargs pykdtree"
6666
CIBW_TEST_REQUIRES: "pytest"
6767
CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64"
68+
# we use openmp (libomp) from homebrew which has a current limit of
69+
# macos 12 (Monterey): https://formulae.brew.sh/formula/libomp
70+
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=12
6871

6972
- name: Upload wheel(s) as build artifacts
7073
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)