From: Paul Brossier Date: Wed, 26 Sep 2018 09:42:17 +0000 (+0200) Subject: .circleci/config.yml: use pip --user X-Git-Tag: 0.4.8~92^2~21^2~11 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=58cc68e4ec2d5074c70e6db5881836f29ce34153;p=aubio.git .circleci/config.yml: use pip --user --- 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