Skip to content

Commit

Permalink
Fix conda install that was added without the --yes option, which brea…
Browse files Browse the repository at this point in the history
…ks non-interactive builds.
  • Loading branch information
tskisner committed Oct 2, 2019
1 parent ab4d2cc commit 57525dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/conda_pkgs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ conda install --copy --yes \
jupyter \
ipywidgets \
bokeh \
&& conda install dask distributed -c conda-forge \
&& conda install --copy --yes -c conda-forge dask distributed \
&& mplrc="@CONDA_PREFIX@/lib/python@PYVERSION@/site-packages/matplotlib/mpl-data/matplotlibrc"; \
cat ${mplrc} | sed -e "s#^backend.*#backend : TkAgg#" > ${mplrc}.tmp; \
mv ${mplrc}.tmp ${mplrc} \
Expand Down

0 comments on commit 57525dc

Please sign in to comment.