summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2020-08-01 20:23:20 -0500
committerGitHub <noreply@github.com>2020-08-01 21:23:20 -0400
commita180125799265c93ccea1c2858f419306f66040f (patch)
tree79d15b504d5bf5fa833f0f4a3a07509ee8460d49
parent385e33f3f39cfeb132f31e0d1c892cca41c38c14 (diff)
downloadpy-bcrypt-git-a180125799265c93ccea1c2858f419306f66040f.tar.gz
need this flag for pip wheel (#211)
-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 82727fc..6b270dd 100644
--- a/.github/workflows/wheel-builder.yml
+++ b/.github/workflows/wheel-builder.yml
@@ -137,7 +137,7 @@ jobs:
.venv/bin/pip install setuptools wheel cffi six;
REGEX='cp3([0-9])*';
if [[ ${{ matrix.PYTHON }} =~ $REGEX ]]; then
- PY_LIMITED_API=\"--py-limited-api=cp3${BASH_REMATCH[1]}\";
+ 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
auditwheel repair tmpwheelhouse/bcrypt*.whl -w wheelhouse/;