Ensure matplotlib version is 1.5.3

This commit is contained in:
Alex Goodman 2016-12-09 02:29:31 -08:00
parent a8655dddd6
commit 1211a2f9e0
2 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ matrix:
before_install:
- echo "MAVEN_OPTS='-Xms1024M -Xmx2048M -XX:MaxPermSize=1024m -XX:-UseGCOverheadLimit -Dorg.slf4j.simpleLogger.defaultLogLevel=warn'" >> ~/.mavenrc
- ./testing/install_external_dependencies.sh > /dev/null 2>&1
- ./testing/install_external_dependencies.sh
- ls -la .spark-dist ${HOME}/.m2/repository/.cache/maven-download-plugin || true
- ls .node_modules && cp -r .node_modules zeppelin-web/node_modules || echo "node_modules are not cached"
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1600x1024x16"

View file

@ -27,7 +27,7 @@ if [[ ${PROFILE/"-Pr "} != $PROFILE ]] || [[ ${PROFILE/"-Psparkr "} != $PROFILE
source ~/.environ
if [[ ! -d "$HOME/R/knitr" ]] ; then
mkdir -p ~/R
R -e "install.packages('knitr', repos = 'http://cran.us.r-project.org', lib='~/R')"
R -e "install.packages('knitr', repos = 'http://cran.us.r-project.org', lib='~/R')" > /dev/null 2>&1
fi
fi
@ -42,5 +42,5 @@ if [[ -n "$PYTHON" ]] ; then
conda update -q conda
conda info -a
conda config --add channels conda-forge
conda install -q matplotlib pandasql
conda install -q matplotlib=1.5.3 pandasql
fi