diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2020-08-01 20:40:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-01 21:40:56 -0400 |
commit | a254f291a956b8a97ecc64625543dec059e78759 (patch) | |
tree | a2a590a1009d9fb2a8d4e3c1557f363a9d6754bb /.github | |
parent | a180125799265c93ccea1c2858f419306f66040f (diff) | |
download | py-bcrypt-git-a254f291a956b8a97ecc64625543dec059e78759.tar.gz |
all inside a single string (#212)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/wheel-builder.yml | 2 |
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)\";" |