From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
cirp: force pip to install to user directory Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/.travis/cirp/install.sh b/.travis/cirp/install.sh --- a/.travis/cirp/install.sh +++ b/.travis/cirp/install.sh @@ -67,11 +67,11 @@ elif [ "$TRAVIS_OS_NAME" == "linux" ]; then pyenv global $(pyenv versions | grep -o ' 3\.[5-99]\.[1-99]' | tail -n1) fi -python3 -m pip install --upgrade pip -python3 -m pip install setuptools +python3 -m pip install --user --upgrade pip +python3 -m pip install --user setuptools # Don't install again if already installed. # OSX keeps re-installing it tough, as it uses a temp per-script virtualenv. if ! python3 -m pip list --format=columns | grep '^ci-release-publisher '; then - python3 -m pip install https://files.pythonhosted.org/packages/49/20/2631e993daa85b35c8390e8124570b0321825e6a77e566492b4637566983/ci_release_publisher-0.3.0.tar.gz + python3 -m pip install --user https://files.pythonhosted.org/packages/49/20/2631e993daa85b35c8390e8124570b0321825e6a77e566492b4637566983/ci_release_publisher-0.3.0.tar.gz fi -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/000000000000ccb66c05d9e9c3b6%40google.com.
