Skip to content

Commit 4ecfecc

Browse files
committed
fix macos
1 parent 11cbce9 commit 4ecfecc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

livekit-rtc/pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,11 @@ manylinux-pypy_i686-image = "manylinux_2_28"
6767
manylinux-pypy_aarch64-image = "manylinux_2_28"
6868

6969
# macOS deployment targets must match the FFI binaries (see rust-sdks/.github/workflows/ffi-builds.yml)
70-
[tool.cibuildwheel.macos]
70+
# x86_64 supports macOS 10.15+, arm64 requires macOS 11.0+
71+
[[tool.cibuildwheel.overrides]]
72+
select = "*macosx_x86_64"
7173
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15" }
7274

7375
[[tool.cibuildwheel.overrides]]
74-
select = "*-macosx_arm64"
75-
environment = { MACOSX_DEPLOYMENT_TARGET = "11.0" } # arm64 requires macOS 11+
76+
select = "*macosx_arm64"
77+
environment = { MACOSX_DEPLOYMENT_TARGET = "11.0" }

0 commit comments

Comments
 (0)