Skip to content

Commit 92d98bc

Browse files
committed
fixed syntax error in travis file
1 parent db3ac3e commit 92d98bc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ before_install:
2424
fi
2525
- if $INSTALL_DEB_DEPENDECIES; then source /etc/fsl/fsl.sh; fi
2626
- if $INSTALL_DEB_DEPENDECIES; then source /etc/afni/afni.sh; fi
27+
# Install vtk and fix numpy installation problem
28+
# Fix numpy problem: https://github.com/enthought/enable/issues/34#issuecomment-2029381
2729
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then travis_retry sudo apt-get install -qq libx11-dev swig;
28-
# Fix numpy problem: https://github.com/enthought/enable/issues/34#issuecomment-2029381
29-
echo '[x11]' >> $HOME/.numpy-site.cfg;
30+
echo '[x11]' >> $HOME/.numpy-site.cfg;
3031
echo 'library_dirs = /usr/lib64:/usr/lib:/usr/lib/x86_64-linux-gnu' >> $HOME/.numpy-site.cfg;
3132
echo 'include_dirs = /usr/include:/usr/include/X11' >> $HOME/.numpy-site.cfg;
3233
fi

0 commit comments

Comments
 (0)