Commit 981f6e40 authored by Peter Parente's avatar Peter Parente

Notebook 5.4, force tornado 4.* at the outset

parent 1d94de26
...@@ -23,7 +23,6 @@ USER $NB_UID ...@@ -23,7 +23,6 @@ USER $NB_UID
# R packages # R packages
RUN conda install --quiet --yes \ RUN conda install --quiet --yes \
'tornado<5' \
'r-base=3.4.1' \ 'r-base=3.4.1' \
'r-irkernel=0.8*' \ 'r-irkernel=0.8*' \
'r-ggplot2=2.2*' \ 'r-ggplot2=2.2*' \
......
...@@ -77,10 +77,12 @@ RUN cd /tmp && \ ...@@ -77,10 +77,12 @@ RUN cd /tmp && \
fix-permissions /home/$NB_USER fix-permissions /home/$NB_USER
# Install Jupyter Notebook and Hub # Install Jupyter Notebook and Hub
# Issue #589: Force tornado < 5.0 until various zmq dependencies are resolved upstream
RUN conda install --quiet --yes \ RUN conda install --quiet --yes \
'notebook=5.2.*' \ 'notebook=5.4.*' \
'jupyterhub=0.8.*' \ 'jupyterhub=0.8.*' \
'jupyterlab=0.31.*' \ 'jupyterlab=0.31.*' \
'tornado=4.*' \
&& conda clean -tipsy && \ && conda clean -tipsy && \
jupyter labextension install @jupyterlab/hub-extension@^0.8.0 && \ jupyter labextension install @jupyterlab/hub-extension@^0.8.0 && \
npm cache clean && \ npm cache clean && \
......
...@@ -42,7 +42,6 @@ USER $NB_UID ...@@ -42,7 +42,6 @@ USER $NB_UID
RUN conda config --system --append channels r && \ RUN conda config --system --append channels r && \
conda install --quiet --yes \ conda install --quiet --yes \
'rpy2=2.8*' \ 'rpy2=2.8*' \
'tornado<5' \
'r-base=3.4.1' \ 'r-base=3.4.1' \
'r-irkernel=0.8*' \ 'r-irkernel=0.8*' \
'r-plyr=1.8*' \ 'r-plyr=1.8*' \
......
...@@ -18,9 +18,7 @@ RUN apt-get update && \ ...@@ -18,9 +18,7 @@ RUN apt-get update && \
USER $NB_UID USER $NB_UID
# R packages # R packages
# Force tornado<5 for #589
RUN conda install --quiet --yes \ RUN conda install --quiet --yes \
'tornado<5' \
'r-base=3.4.1' \ 'r-base=3.4.1' \
'r-irkernel=0.8*' \ 'r-irkernel=0.8*' \
'r-plyr=1.8*' \ 'r-plyr=1.8*' \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment