We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11cbce9 commit 4ecfeccCopy full SHA for 4ecfecc
livekit-rtc/pyproject.toml
@@ -67,9 +67,11 @@ manylinux-pypy_i686-image = "manylinux_2_28"
67
manylinux-pypy_aarch64-image = "manylinux_2_28"
68
69
# macOS deployment targets must match the FFI binaries (see rust-sdks/.github/workflows/ffi-builds.yml)
70
-[tool.cibuildwheel.macos]
+# x86_64 supports macOS 10.15+, arm64 requires macOS 11.0+
71
+[[tool.cibuildwheel.overrides]]
72
+select = "*macosx_x86_64"
73
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15" }
74
75
[[tool.cibuildwheel.overrides]]
-select = "*-macosx_arm64"
-environment = { MACOSX_DEPLOYMENT_TARGET = "11.0" } # arm64 requires macOS 11+
76
+select = "*macosx_arm64"
77
+environment = { MACOSX_DEPLOYMENT_TARGET = "11.0" }
0 commit comments