Skip to content

Commit 8e5d0de

Browse files
committed
fix: bypass manylinux platform tag check in CI smoke test by unzipping wheel directly to site-packages
1 parent 6ff366f commit 8e5d0de

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,8 @@ jobs:
218218
set -euo pipefail
219219
WHEEL=$(ls dist/qector_decoder_v3-*linux*.whl | head -1)
220220
python -m venv /tmp/smoke_venv
221-
/tmp/smoke_venv/bin/pip install "$WHEEL"
221+
SITE_PKG=$(/tmp/smoke_venv/bin/python -c "import site; print(site.getsitepackages()[0])")
222+
unzip -q -o "$WHEEL" -d "$SITE_PKG"
222223
/tmp/smoke_venv/bin/python -c "
223224
import qector_decoder_v3 as q
224225
print('version:', q.__version__)

0 commit comments

Comments
 (0)