diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e2e1753..dd37717 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -68,7 +68,9 @@ jobs: python3 -m cibuildwheel --output-dir dist env: CIBW_ARCHS_LINUX: x86_64 - CIBW_ARCHS_MACOS: "x86_64 arm64" + # apple M1 image is not supported yet in Github Action: https://github.com/actions/runner-images/issues/2187 + # We need to manually build this locally until this will be supported. + CIBW_ARCHS_MACOS: x86_64 # "x86_64 arm64" CIBW_BUILD: "cp37-*64 cp38-*64 cp39-*64 cp310-*64 cp311-*64" CIBW_BEFORE_BUILD_LINUX: bash scripts/install-manylinux-deps.sh CIBW_BEFORE_BUILD_MACOS: bash scripts/install-macos-deps.sh