From 58cc68e4ec2d5074c70e6db5881836f29ce34153 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 26 Sep 2018 11:42:17 +0200 Subject: [PATCH] .circleci/config.yml: use pip --user --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 24e70de6..75f7fa6f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ apt-run: &apt-install pip-install: &pip-install name: Install pip dependencies command: | - pip install -r requirements.txt + pip install --user -r requirements.txt build-wheel: &build-wheel name: Build python wheel @@ -17,7 +17,7 @@ build-wheel: &build-wheel install-wheel: &install-wheel name: Build python wheel command: | - pip install dist/aubio*.whl + pip install --user dist/aubio*.whl test-nose2: &test-nose2 name: Test python wheel -- 2.11.0