Skip to content

Commit eb88fb3

Browse files
committed
fixup
1 parent d926cdc commit eb88fb3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/wheels.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ jobs:
167167
os: ubuntu-latest
168168
cibw_arch: x86_64
169169
build: "*musllinux*"
170+
build_type: musl
170171
- name: "manylinux_2_28 x86_64"
171172
os: ubuntu-latest
172173
cibw_arch: x86_64
@@ -180,6 +181,7 @@ jobs:
180181
os: ubuntu-24.04-arm
181182
cibw_arch: aarch64
182183
build: "*musllinux*"
184+
build_type: musl
183185
- name: "manylinux_2_28 aarch64"
184186
os: ubuntu-24.04-arm
185187
cibw_arch: aarch64
@@ -219,7 +221,7 @@ jobs:
219221

220222
- uses: actions/upload-artifact@v4
221223
with:
222-
name: dist-${{ matrix.os }}${{ matrix.macosx_deployment_target && format('-{0}', matrix.macosx_deployment_target) }}-${{ matrix.cibw_arch }}${{ matrix.manylinux && format('-{0}', matrix.manylinux) }}
224+
name: dist-${{ matrix.os }}${{ matrix.macosx_deployment_target && format('-{0}', matrix.macosx_deployment_target) }}-${{ matrix.cibw_arch }}${{ matrix.manylinux && format('-{0}', matrix.manylinux) }}}${{ matrix.build_type && format('-{0}', matrix.build_type) }}
223225
path: ./wheelhouse/*.whl
224226

225227
windows:

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ test-extras = "tests"
1010

1111
[tool.cibuildwheel.macos.environment]
1212
PATH = "$(pwd)/build/deps/darwin/bin:$(dirname $(which python3)):/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin"
13+
CFLAGS = "-I$(pwd)/build/deps/darwin/include"
14+
LDFLAGS = "-L$(pwd)/build/deps/darwin/lib"
1315

1416
[tool.cibuildwheel.linux]
1517
before-test = "yum install -y libtiff-devel libjpeg-devel zlib-devel libpng-devel"

0 commit comments

Comments
 (0)