We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5f28b3d + e9e0f8c commit 4e66dabCopy full SHA for 4e66dab
.github/workflows/docker/buildwheel.sh
@@ -11,6 +11,7 @@ echo "arch=$ARCH"
11
for V in "${PYTHON_VERSIONS[@]}"; do
12
PYBIN=/opt/python/$V/bin
13
rm -rf build/ # Avoid lib build by narrow Python is used by wide python
14
+ $PYBIN/python -m pip install build
15
$PYBIN/python -m build --wheel
16
done
17
.github/workflows/wheels.yml
@@ -27,6 +27,7 @@ jobs:
27
- name: Build sdist
28
shell: bash
29
run: |
30
+ python -m pip install build
31
python -m build --sdist
32
33
- name: Upload sdist
0 commit comments