We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff366f commit 8e5d0deCopy full SHA for 8e5d0de
1 file changed
.github/workflows/release-build.yml
@@ -218,7 +218,8 @@ jobs:
218
set -euo pipefail
219
WHEEL=$(ls dist/qector_decoder_v3-*linux*.whl | head -1)
220
python -m venv /tmp/smoke_venv
221
- /tmp/smoke_venv/bin/pip install "$WHEEL"
+ SITE_PKG=$(/tmp/smoke_venv/bin/python -c "import site; print(site.getsitepackages()[0])")
222
+ unzip -q -o "$WHEEL" -d "$SITE_PKG"
223
/tmp/smoke_venv/bin/python -c "
224
import qector_decoder_v3 as q
225
print('version:', q.__version__)
0 commit comments