Skip to content

Commit 4164754

Browse files
committed
fix build error
1 parent 9ff3cc5 commit 4164754

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/build-linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646

4747
- name: Build a binary wheel
4848
run: |
49-
python setup.py build_ext
5049
python setup.py bdist_wheel
5150
5251
- name: Upload Wheel to Release

.github/workflows/build-macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ jobs:
2727
cache: pip
2828

2929
- name: Install build deps
30-
run: python -m pip install setuptools wheel
30+
run: |
31+
python -m pip install --upgrade setuptools
32+
python -m pip install wheel
3133
3234
- name: Build a binary wheel
3335
run: |
34-
python setup.py build_ext
3536
python setup.py bdist_wheel
3637
3738
- name: Test Run

.github/workflows/build-windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
architecture: ${{ matrix.architecture }}
2929

3030
- name: Install build deps
31-
run: python -m pip install setuptools wheel
31+
run: |
32+
python -m pip install --upgrade setuptools
33+
python -m pip install wheel
3234
3335
- name: Build a binary wheel
3436
run: |

0 commit comments

Comments
 (0)