We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dced7ef commit 942bec7Copy full SHA for 942bec7
1 file changed
.github/workflows/release.yml
@@ -37,7 +37,7 @@ jobs:
37
maturin-version: v1.13.1
38
target: ${{ matrix.target }}
39
manylinux: "2014"
40
- args: --release --locked --compatibility pypi --out dist --features openblas-static -i python${{ matrix.python-version }}
+ args: --release --locked --compatibility pypi --out dist --no-default-features --features python,openblas-static -i python${{ matrix.python-version }}
41
42
- name: Upload wheel artifact
43
uses: actions/upload-artifact@v4
@@ -75,7 +75,8 @@ jobs:
75
python -m maturin build \
76
--release \
77
--locked \
78
- --features openblas-static \
+ --no-default-features \
79
+ --features python,openblas-static \
80
--out dist \
81
-i python
82
0 commit comments