Skip to content

Commit

Permalink
Require ipywidgets 5.1
Browse files Browse the repository at this point in the history
5.0 had API compatibility problems
see jupyter-widgets/ipywidgets#522

(c) Copyright IBM Corp. 2016
  • Loading branch information
parente committed Apr 29, 2016
1 parent 39104f2 commit e14e387
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyspark-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ USER jovyan

# Install Python 3 packages
RUN conda install --quiet --yes \
'ipywidgets=5.0*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
Expand All @@ -60,7 +60,7 @@ RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix
# Install Python 2 packages and kernel spec
RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.2*' \
'ipywidgets=5.0*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
Expand Down
4 changes: 2 additions & 2 deletions scipy-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ USER jovyan

# Install Python 3 packages
RUN conda install --quiet --yes \
'ipywidgets=5.0*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
Expand All @@ -40,7 +40,7 @@ RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix
# Install Python 2 packages
RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.2*' \
'ipywidgets=5.0*' \
'ipywidgets=5.1*' \
'pandas=0.17*' \
'numexpr=2.5*' \
'matplotlib=1.5*' \
Expand Down

0 comments on commit e14e387

Please sign in to comment.