From 3fc6ee474c4670d44550073b793cf9655fb9f2b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Voituret?= Date: Wed, 6 Nov 2019 23:35:41 +0100 Subject: [PATCH] fix: switch docker image --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 724d634..25aecf3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,22 +2,22 @@ version: 2 jobs: test: docker: - - image: circleci/python:3.6.1 + - image: python:3 working_directory: ~/spleeter steps: - checkout - run: name: install ffmpeg - command: sudo apt-get update && sudo apt-get install ffmpeg + command: apt-get update && apt-get install ffmpeg - run: name: install spleeter - command: sudo pip install . + command: pip install . - run: name: test separation - command: python -m spleeter separate -i audio_example.mp3 -o . + command: spleeter separate -i audio_example.mp3 -o . upload: docker: - - image: circleci/python:3.6.1 + - image: python:3 steps: - checkout - run: @@ -25,7 +25,7 @@ jobs: command: python setup.py bdist - run: name: upload to PyPi - command: pip install twine --user && twine upload dist/* + command: pip install twine && twine upload dist/* workflows: version: 2 test-and-deploy: