ref: 58cc68e4ec2d5074c70e6db5881836f29ce34153
parent: 91ac33fdff290edfdbdc47ce381fc294446c6024
author: Paul Brossier <piem@piem.org>
date: Wed Sep 26 07:42:17 EDT 2018
.circleci/config.yml: use pip --user
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -7,7 +7,7 @@
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 @@
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