diff options
author | odidev <odidev@puresoftware.com> | 2020-08-06 01:05:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-05 14:35:01 -0500 |
commit | a37a0ef57633e67e26efd3d7337e2a9ba695188f (patch) | |
tree | 7f81575e97d439e5b3e79cabf64eeb128fbeef72 /.github | |
parent | af26a4c596f655583c40a64c23241d2fae261940 (diff) | |
download | py-bcrypt-git-a37a0ef57633e67e26efd3d7337e2a9ba695188f.tar.gz |
Fix for using pip for aarch64 (#214)
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 75ce494..fe6eadc 100644 --- a/.github/workflows/wheel-builder.yml +++ b/.github/workflows/wheel-builder.yml @@ -134,7 +134,7 @@ jobs: /opt/python/${{ matrix.PYTHON }}/bin/pip install virtualenv; /opt/python/${{ matrix.PYTHON }}/bin/python -m virtualenv .venv; .venv/bin/pip install setuptools wheel cffi six; - .venv/bin/pip install -U pip==10.0.1; # downgrade pip for reasons we can't remember but are definitely needed + .venv/bin/pip install -U pip==18.0.0; # downgrade pip for reasons we can't remember but are definitely needed REGEX='cp3([0-9])*'; if [[ ${{ matrix.PYTHON }} =~ $REGEX ]]; then PY_LIMITED_API=\"--build-option --py-limited-api=cp3${BASH_REMATCH[1]}\"; |