Compare commits

...

1 Commits

Author SHA1 Message Date
dante
73f5f95aad fix: rm macos metal bindings from python 2025-01-21 00:36:30 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --features python-bindings,macos-metal
args: --release --out dist --features python-bindings
- name: Build wheels
if: matrix.target == 'x86_64'
uses: PyO3/maturin-action@v1

View File

@@ -206,7 +206,7 @@ jobs:
- name: Build release binary (metal)
if: matrix.build == 'macos-aarch64'
run: ${{ env.CARGO }} build --release ${{ env.TARGET_FLAGS }} -Z sparse-registry --features metal
run: ${{ env.CARGO }} build --release ${{ env.TARGET_FLAGS }} -Z sparse-registry --features macos-metal
- name: Strip release binary
if: matrix.build != 'windows-msvc' && matrix.build != 'linux-aarch64'