Skip to content

Commit

Permalink
v2.0.4: fix jupyter issue with permissions on control socket
Browse files Browse the repository at this point in the history
- Recent addition in jupyter_client caused this bug.  This should be
  removed later, once a newer version of jupyter_core is released.
  The offending code was added to jupyter_client, moved to
  jupyter_core, then fixed in jupyter_core.
- original patch: jupyter/jupyter_client#469  (2019-09-08)
- fix in jupyter_core: jupyter/jupyter_core#177 (2019-11-16)
  • Loading branch information
rkdarst committed Jan 16, 2020
1 parent 8592533 commit 976ee27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CRAN_URL=https://cran.microsoft.com/snapshot/2019-12-29/
# base image - jupyter stuff only, not much software
VER_BASE=2.0
# Python
VER_STD=2.0.3
VER_STD=2.0.4
# Julia
VER_JULIA=2.0.0
# R
Expand Down
4 changes: 4 additions & 0 deletions standard.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ RUN pip install --no-cache-dir \
# && \
# clean-layer.sh

# Fix nbgrader permissions problem
RUN \
sed -i "s@assert '0600' ==.*@assert stat.S_IMODE(os.stat(fname).st_mode) \& 0o77 == 0@" /opt/conda/lib/python3.7/site-packages/jupyter_client/connect.py

ENV CC=clang CXX=clang++


Expand Down

0 comments on commit 976ee27

Please sign in to comment.