We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d7b00 commit 20b754eCopy full SHA for 20b754e
1 file changed
.github/workflows/ci.yaml
@@ -166,6 +166,12 @@ jobs:
166
uses: docker/setup-qemu-action@v3
167
if: matrix.arch != 'x86_64' && matrix.arch != 'i686' && matrix.arch != 'aarch64' && matrix.arch != 'riscv64'
168
169
+ - name: fix Python path (riscv64)
170
+ if: matrix.arch == 'riscv64'
171
+ run: |
172
+ # Remove broken /opt/python from PATH (missing stdlib modules on RISE runners)
173
+ echo "PATH=$(echo "$PATH" | tr ':' '\n' | grep -v /opt/python | tr '\n' ':' | sed 's/:$//')" >> "$GITHUB_ENV"
174
+
175
- name: build/test wheels
176
id: build
177
env:
0 commit comments