Skip to content

Commit

Permalink
Downgrade tornado to the last known good version to fix notebook star…
Browse files Browse the repository at this point in the history
…t issue.

The latest version of tornado has a bug that breaks Jupyter notebook:
jupyter/notebook#4439
  • Loading branch information
erdalsivri committed Jun 14, 2019
1 parent 835a154 commit 72ed33d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,9 @@ RUN pip install bcolz && \
pip install six && \
pip install terminado && \
pip install testpath && \
pip install tornado && \
# Latest version (6.0) of tornado breaks Jupyter notebook:
# https://github.com/jupyter/notebook/issues/4439
pip install tornado==5.0.2 && \
pip install tqdm && \
pip install traitlets && \
pip install wcwidth && \
Expand Down

0 comments on commit 72ed33d

Please sign in to comment.