diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-09-06 04:12:52 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-09-06 04:12:52 +0000 |
commit | f42dcf1d6578df945fb52fb24703e88de54ad45b (patch) | |
tree | efd58347c05908c103cfdf8a2b3321c158a7e360 /.travis | |
parent | Adding upstream version 2.1.0. (diff) | |
download | cli-helpers-upstream/2.2.0.tar.xz cli-helpers-upstream/2.2.0.zip |
Adding upstream version 2.2.0.upstream/2.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 8605c57..1768c89 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -8,7 +8,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then git clone --depth 1 https://github.com/pyenv/pyenv ~/.pyenv export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" - eval "$(pyenv init -)" + eval "$(pyenv init --path)" case "${TOXENV}" in py36) @@ -22,4 +22,4 @@ fi pip install virtualenv python -m virtualenv ~/.venv source ~/.venv/bin/activate -pip install tox +pip install -r requirements-dev.txt -U --upgrade-strategy only-if-needed |