From 71e1f1e6bc6ecb6dba572df2e6bc60920456dd01 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 29 Jan 2021 13:20:36 -0500 Subject: [PATCH] Try to use the wheelhouse for pip upgrade too --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ca9ac46..4891788 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -93,7 +93,7 @@ jobs: # Get the newest pip we can because who knows what came along with # that virtualenv. - venv/bin/pip install --upgrade pip + venv/bin/pip install --find-links file://${PWD}/wheelhouse --upgrade pip - run: name: "Populate Wheelhouse" -- GitLab