Skip to content

Commit 942bec7

Browse files
committed
Fix macOS release wheel feature set
1 parent dced7ef commit 942bec7

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
maturin-version: v1.13.1
3838
target: ${{ matrix.target }}
3939
manylinux: "2014"
40-
args: --release --locked --compatibility pypi --out dist --features openblas-static -i python${{ matrix.python-version }}
40+
args: --release --locked --compatibility pypi --out dist --no-default-features --features python,openblas-static -i python${{ matrix.python-version }}
4141

4242
- name: Upload wheel artifact
4343
uses: actions/upload-artifact@v4
@@ -75,7 +75,8 @@ jobs:
7575
python -m maturin build \
7676
--release \
7777
--locked \
78-
--features openblas-static \
78+
--no-default-features \
79+
--features python,openblas-static \
7980
--out dist \
8081
-i python
8182

0 commit comments

Comments
 (0)