From 7e2e7f6fce5672267381d5610f55589fea975036 Mon Sep 17 00:00:00 2001 From: Alex Stapleton Date: Mon, 22 Apr 2019 15:00:08 +0100 Subject: [PATCH] sudo to pip install things --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 04e8b7b..1ffc829 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,19 +12,19 @@ jobs: - image: circleci/python:3.6 steps: - checkout - - run: pip install tox + - run: sudo pip install tox - run: tox -e py36 test-py37: docker: - image: circleci/python:3.7 steps: - checkout - - run: pip install tox + - run: sudo pip install tox - run: tox -e py37 black-py37: docker: - image: circleci/python:3.7 steps: - checkout - - run: pip install tox + - run: sudo pip install tox - run: tox -e black \ No newline at end of file