From 06bacd9de009650274550e42b057c14d60bfb192 Mon Sep 17 00:00:00 2001 From: Guy Jacob Date: Tue, 9 Feb 2021 15:54:44 +0200 Subject: [PATCH] Fix Rust compiler build error (Kubernetes dependency) (#471) Update pip version during CircleCI setup stage to resolve Rust compiler build error (as suggested in https://cryptography.io/en/latest/faq.html#installing-cryptography-fails-with-error-can-not-find-rust-compiler) --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index e8ddbbb..05eefd9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,6 +22,7 @@ aliases: run: name: Prepare aws cli command: | + sudo pip install --upgrade pip sudo pip install awscli pytest kubernetes==8.0.0b1 $(aws ecr get-login --no-include-email --region us-west-2)