summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2020-08-01 20:40:56 -0500
committerGitHub <noreply@github.com>2020-08-01 21:40:56 -0400
commita254f291a956b8a97ecc64625543dec059e78759 (patch)
treea2a590a1009d9fb2a8d4e3c1557f363a9d6754bb
parenta180125799265c93ccea1c2858f419306f66040f (diff)
downloadpy-bcrypt-git-a254f291a956b8a97ecc64625543dec059e78759.tar.gz
all inside a single string (#212)
-rw-r--r--.github/workflows/wheel-builder.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml
index 6b270dd..8b805d4 100644
--- a/.github/workflows/wheel-builder.yml
+++ b/.github/workflows/wheel-builder.yml
@@ -139,7 +139,7 @@ jobs:
if [[ ${{ matrix.PYTHON }} =~ $REGEX ]]; then
PY_LIMITED_API=\"--build-option --py-limited-api=cp3${BASH_REMATCH[1]}\";
fi;
- .venv/bin/pip wheel bcrypt --no-binary bcrypt --no-deps --wheel-dir=tmpwheelhouse $PY_LIMITED_API
+ .venv/bin/pip wheel bcrypt --no-binary bcrypt --no-deps --wheel-dir=tmpwheelhouse $PY_LIMITED_API;
auditwheel repair tmpwheelhouse/bcrypt*.whl -w wheelhouse/;
.venv/bin/pip install bcrypt --no-index -f wheelhouse/;
.venv/bin/python -c \"import bcrypt; password = b'super secret password';hashed = bcrypt.hashpw(password, bcrypt.gensalt());bcrypt.checkpw(password, hashed)\";"