We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19a9da7 commit db8dfacCopy full SHA for db8dfac
1 file changed
.github/workflows/build-riscv64.yml
@@ -28,10 +28,12 @@ jobs:
28
29
- name: Set up Python
30
run: |
31
+ # Remove broken /opt/python from PATH
32
+ export PATH=$(echo "$PATH" | tr ':' '\n' | grep -v /opt/python | tr '\n' ':' | sed 's/:$//')
33
sudo apt-get install -y python3-venv python3-pip python3-dev
- python3 -m venv --without-pip /tmp/build-venv
34
+ /usr/bin/python3 -m venv --without-pip /tmp/build-venv
35
. /tmp/build-venv/bin/activate
- curl -sS https://bootstrap.pypa.io/get-pip.py | python3
36
+ curl -sS https://bootstrap.pypa.io/get-pip.py | /usr/bin/python3
37
pip install --upgrade setuptools wheel
38
39
- name: Build wheel
0 commit comments