diff --git a/.circleci/config.yml b/.circleci/config.yml index 0abdb55e..c91fb51f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,7 +26,7 @@ jobs: # This is based on your 1.0 configuration file or project settings - run: working_directory: ~/rocky/python-uncompyle6 - command: pip install virtualenv && pip install nose && pip install pep8 && pyenv rehash + command: pip install --user virtualenv && pip install --user nose && pip install --user pep8 && pyenv rehash # Dependencies # This would typically go in either a build or a build-and-test job when using workflows # Restore the dependency cache @@ -37,9 +37,9 @@ jobs: - v2-dependencies- # This is based on your 1.0 configuration file or project settings - - run: pip install --upgrade setuptools - - run: pip install -e . - - run: pip install -r requirements-dev.txt + - run: pip install --user --upgrade setuptools + - run: pip install --user -e . + - run: pip install --user -r requirements-dev.txt # Save dependency cache - save_cache: