We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7661f15 commit d75f85bCopy full SHA for d75f85b
.github/workflows/python_wheel_build.yml
@@ -54,7 +54,11 @@ jobs:
54
55
- name: Install produced wheel
56
run: |
57
- pip install wheels/*.whl
+ PY_VER=$(python -c "import sys; print(f'cp{sys.version_info.major}{sys.version_info.minor}')")
58
+ echo "Installing wheel for Python ABI: $PY_VER"
59
+ WHEEL=$(ls wheels/*${PY_VER}*.whl | head -n 1)
60
+ echo "Found wheel: $WHEEL"
61
+ pip install "$WHEEL"
62
63
- name: Install tutorials dependencies
64
0 commit comments