We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3ceff2 commit 19a9da7Copy full SHA for 19a9da7
1 file changed
.github/workflows/build-riscv64.yml
@@ -28,10 +28,11 @@ jobs:
28
29
- name: Set up Python
30
run: |
31
- sudo apt-get install -y python3-venv python3-pip
32
- python3 -m venv /tmp/build-venv
+ sudo apt-get install -y python3-venv python3-pip python3-dev
+ python3 -m venv --without-pip /tmp/build-venv
33
. /tmp/build-venv/bin/activate
34
- pip install --upgrade pip setuptools wheel
+ curl -sS https://bootstrap.pypa.io/get-pip.py | python3
35
+ pip install --upgrade setuptools wheel
36
37
- name: Build wheel
38
0 commit comments