From e26e0ed2044002e89fb0fbf7d397a0009a9615e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Voituret?= Date: Wed, 6 Nov 2019 23:27:55 +0100 Subject: [PATCH] fix: add user scoped install --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f09241..4d803a7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: - checkout - run: name: install spleeter - command: pip install . + command: pip install . --user - run: name: test separation command: spleeter separate -i audio_example.mp3 -o . @@ -22,7 +22,7 @@ jobs: command: python setup.py bdist - run: name: upload to PyPi - command: pip install twine && twine upload dist/* + command: pip install twine --user && twine upload dist/* workflows: version: 2 test-and-deploy: