Skip to content

Commit 4e66dab

Browse files
authored
Merge pull request #84 from benjeffery/fix-wheels
Fix wheel building
2 parents 5f28b3d + e9e0f8c commit 4e66dab

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/docker/buildwheel.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ echo "arch=$ARCH"
1111
for V in "${PYTHON_VERSIONS[@]}"; do
1212
PYBIN=/opt/python/$V/bin
1313
rm -rf build/ # Avoid lib build by narrow Python is used by wide python
14+
$PYBIN/python -m pip install build
1415
$PYBIN/python -m build --wheel
1516
done
1617

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- name: Build sdist
2828
shell: bash
2929
run: |
30+
python -m pip install build
3031
python -m build --sdist
3132
3233
- name: Upload sdist

0 commit comments

Comments
 (0)