Skip to content

Commit 4291ffc

Browse files
committed
install boto3 in python 3
1 parent 452a284 commit 4291ffc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ before_install:
2828
export PATH=/home/travis/anaconda/bin:$PATH &&
2929
conda config --append channels conda-forge &&
3030
conda update --all -y python=$TRAVIS_PYTHON_VERSION &&
31-
conda install -y icu numpy scipy traits;}
31+
conda install -y icu numpy scipy traits &&
32+
if [ "${TRAVIS_PYTHON_VERSION:0:1}" -gt "2" ]; then
33+
conda install -y boto3;
34+
fi }
3235
- travis_retry bef_inst
3336
install:
3437
# Add install of vtk and mayavi to test mesh (disabled): conda install -y vtk mayavi &&

0 commit comments

Comments
 (0)