Skip to content

Commit bb31c11

Browse files
committed
Install wheel on CI
1 parent 9b00a2e commit bb31c11

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- name: Install dependencies
4242
run: |
4343
python -m pip install --upgrade pip
44+
python -m pip install wheel
4445
python -m pip install cython --install-option="--no-cython-compile"
4546
- name: Install
4647
run: |

.github/workflows/deploy-n-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- name: 🔗 Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26+
python -m pip install wheel
2627
python -m pip install cython --install-option="--no-cython-compile"
2728
- name: 💎 Install
2829
run: |
@@ -61,7 +62,6 @@ jobs:
6162
- name: 💃 Build release
6263
if: success() && startsWith(github.ref, 'refs/tags')
6364
run: |
64-
python -m pip install wheel
6565
python setup.py clean --all sdist bdist_wheel
6666
- name: 📦 Publish release to PyPI
6767
if: success() && startsWith(github.ref, 'refs/tags')

.github/workflows/integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29+
python -m pip install wheel
2930
python -m pip install cython --install-option="--no-cython-compile"
3031
- name: Install
3132
run: |

0 commit comments

Comments
 (0)