Skip to content

Commit

Permalink
Fix for using pip for aarch64 (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
odidev committed Aug 5, 2020
1 parent af26a4c commit a37a0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/wheel-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]}\";
Expand Down

0 comments on commit a37a0ef

Please sign in to comment.