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.
1 parent 8287464 commit fac1e86Copy full SHA for fac1e86
1 file changed
.github/workflows/cross-platform-build-verification.yml
@@ -188,7 +188,9 @@ jobs:
188
python -m build
189
python -m pip install --break-system-packages dist/*.whl
190
elif command -v apk &> /dev/null; then
191
- apk add --no-cache python3 py3-pip py3-build
+ # Install build dependencies required for compiling psutil
192
+ apk add --no-cache python3 py3-pip py3-build gcc python3-dev musl-dev linux-headers
193
+
194
python3 -m build
195
python3 -m pip install --break-system-packages dist/*.whl
196
fi
0 commit comments