8000 .travis.yml: workaround for Python 2.7 to install tqdm explicitly bef… · larray-project/larray@153e524 · GitHub
[go: up one dir, main page]

Skip to content

Commit 153e524

Browse files
alixdammangdementen
authored andcommitted
.travis.yml: workaround for Python 2.7 to install tqdm explicitly before updating conda
1 parent 8424774 commit 153e524

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ before_install:
2727
- hash -r
2828
- conda config --add channels conda-forge
2929
- conda config --set always_yes yes --set changeps1 no
30+
# workaround for conda >= 4.8
31+
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
32+
pip install tqdm;
33+
fi
3034
- conda update -q conda
3135

3236
# Useful for debugging any issues with conda

0 commit comments

Comments
 (0)
0