.circleci/config.yml: use pip --user
authorPaul Brossier <piem@piem.org>
Wed, 26 Sep 2018 09:42:17 +0000 (11:42 +0200)
committerPaul Brossier <piem@piem.org>
Wed, 26 Sep 2018 09:42:17 +0000 (11:42 +0200)
.circleci/config.yml

index 24e70de..75f7fa6 100644 (file)
@@ -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