File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 70
70
env :
71
71
MATURIN_PASSWORD : ${{ secrets.PYPI_UNDERTHESEA_CORE_API_TOKEN }}
72
72
run : |
73
- $PYTHON -m poetry run maturin build --release --strip --interpreter python${{ matrix.python-version }}
73
+ $PYTHON -m poetry run maturin build --release --strip --only-binary -- interpreter python${{ matrix.python-version }}
74
74
find ./target/wheels/
75
75
$PYTHON -m poetry run maturin publish --username __token__ --interpreter python${{ matrix.python-version }}
76
76
windows :
@@ -105,7 +105,7 @@ jobs:
105
105
env :
106
106
MATURIN_PASSWORD : ${{ secrets.PYPI_UNDERTHESEA_CORE_API_TOKEN }}
107
107
run : |
108
- poetry run maturin build --release --strip --interpreter python
108
+ poetry run maturin build --release --strip --interpreter --only-binary python
109
109
dir target\wheels\
110
110
poetry run maturin publish --username __token__ --interpreter python
111
111
macos-x64 :
@@ -141,7 +141,7 @@ jobs:
141
141
env :
142
142
MATURIN_PASSWORD : ${{ secrets.PYPI_UNDERTHESEA_CORE_API_TOKEN }}
143
143
run : |
144
- poetry run maturin build --release --strip --interpreter python${{ matrix.python-version }}
144
+ poetry run maturin build --release --strip --interpreter --only-binary python${{ matrix.python-version }}
145
145
find ./target/wheels/
146
146
pip install target/wheels/underthesea_core*.whl
147
147
poetry run maturin publish --username __token__ --interpreter python${{ matrix.python-version }}
@@ -171,6 +171,6 @@ jobs:
171
171
run : |
172
172
export PATH="${PWD}/poetry/bin:${PATH}"
173
173
$PYTHON --version
174
- poetry run maturin build --release --strip --interpreter $PYTHON
174
+ poetry run maturin build --release --strip --interpreter --only-binary $PYTHON
175
175
find ./target/wheels/
176
176
poetry run maturin publish --username __token__ --interpreter $PYTHON
You can’t perform that action at this time.
0 commit comments