Skip to content

Commit 5d3aeb1

Browse files
Merge pull request #56 from JohanMabille/control
Added control channel to ZMQChannelsHandler
2 parents 5780b27 + 7649521 commit 5d3aeb1

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ script:
6060
6161
matrix:
6262
include:
63-
- python: 3.4
64-
env: GROUP=python
6563
- python: 3.5
6664
env: GROUP=python
6765
- python: "3.7"

jupyter_server/services/kernels/handlers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def __repr__(self):
126126
def create_stream(self):
127127
km = self.kernel_manager
128128
identity = self.session.bsession
129-
for channel in ('shell', 'iopub', 'stdin'):
129+
for channel in ('shell', 'control', 'iopub', 'stdin'):
130130
meth = getattr(km, 'connect_' + channel)
131131
self.channels[channel] = stream = meth(self.kernel_id, identity=identity)
132132
stream.channel = channel

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
'ipython_genutils',
8181
'traitlets>=4.2.1',
8282
'jupyter_core>=4.4.0',
83-
'jupyter_client>=5.2.0',
83+
'jupyter_client>=5.3.0',
8484
'nbformat',
8585
'nbconvert',
8686
'ipykernel', # bless IPython kernel for now

0 commit comments

Comments
 (0)