Skip to content

Commit d8a1561

Browse files
committed
.travis.yml: workaround for Python 2.7 to install tqdm explicitly before updating conda
1 parent 194c92a commit d8a1561

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)