From 63acf2c20c143c958a1457756d7002a29491f9f3 Mon Sep 17 00:00:00 2001 From: Paul Horton Date: Tue, 7 Dec 2021 10:19:07 +0000 Subject: [PATCH] ci: update CI to only install binary packages Signed-off-by: Paul Horton --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d41024e..16ce273 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,7 +58,10 @@ jobs: paths: - /home/circleci/.cache/pypoetry/virtualenvs - run: + name: "Check all dependencies are available as binaries and build Jake" command: | + poetry export -f requirements.txt -o pinned.requirements.txt + pip install --only-binary ':all:' -r pinned.requirements.txt poetry build - run: command: |