From 1281ec1d328789fc934033691d2863d33297d232 Mon Sep 17 00:00:00 2001 From: Nicolas Droissart Date: Sat, 16 Jan 2021 05:35:51 +0100 Subject: [PATCH] :construction_worker: replace build tools install in config.yml --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d95700b..5080a03 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,14 +27,14 @@ jobs: - run: sudo chown -R circleci:circleci /usr/local/lib/python3.9/site-packages - restore_cache: key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }} + - run: + command: sudo apt install libpq-dev python3-dev + name: Install build tools - run: command: | sudo pip install pipenv pipenv install name: Install virtual env - - run: - command: sudo apt install libpq-dev python3-dev - name: Install build tools - run: command: pip install -r requirements/dev.txt --user name: Install requirements