summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-04-12 10:30:30 -0400
committerGitHub <noreply@github.com>2020-04-12 09:30:30 -0500
commitb77e52961e99098f53238d9045c8a6fc44a117cf (patch)
treef4a0888e0aa090c42f79aeb87122476dcc5e91b9
parent73150e5663728ec3e94c205f16671be61576945f (diff)
downloadpy-bcrypt-git-b77e52961e99098f53238d9045c8a6fc44a117cf.tar.gz
Try to fix ubuntu wheel builder (#201)
-rw-r--r--.github/workflows/wheel-builder.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml
index 5a705d8..b24ab35 100644
--- a/.github/workflows/wheel-builder.yml
+++ b/.github/workflows/wheel-builder.yml
@@ -12,8 +12,10 @@ jobs:
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