# HG changeset patch # User Alex Gaynor <alex.gaynor@gmail.com> # Date 1586701506 14400 # Sun Apr 12 10:25:06 2020 -0400 # Node ID 3d396ead5c9d7dca241f1add8883b5dc411c0c89 # Parent 924b87252ac8971c03b6283c25eddf8a13e7829e Try to fix ubuntu wheel builder diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml --- a/.github/workflows/wheel-builder.yml +++ b/.github/workflows/wheel-builder.yml @@ -12,8 +12,10 @@ name: "Python ${{ matrix.PYTHON }} for manylinux1" steps: - run: /opt/python/${{ matrix.PYTHON }}/bin/python -m virtualenv .venv - # Downgrade pip, can't remember why - - run: .venv/bin/pip install -U pip==10.0.1 + - name: Downgrade pip, can't remember why + run: .venv/bin/pip install -U pip==10.0.1 + - name: Install python dependencies + run: .venv/bin/pip install cffi six - run: | REGEX="cp3([0-9])*" if [[ "${{ matrix.PYTHON }}" =~ $REGEX ]]; then