File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717sys .modules ['IPython.kernel.zmq.session' ] = ShimModule ('session' , mirror = 'jupyter_client.session' )
1818sys .modules ['IPython.kernel.zmq' ] = ShimModule ('zmq' , mirror = 'ipython_kernel' )
1919
20- for pkg in ('comm' , 'inprocess' , 'resources' ):
20+ for pkg in ('comm' , 'inprocess' ):
2121 sys .modules ['IPython.kernel.%s' % pkg ] = ShimModule (pkg , mirror = 'ipython_kernel.%s' % pkg )
2222
2323for pkg in ('ioloop' , 'blocking' ):
2424 sys .modules ['IPython.kernel.%s' % pkg ] = ShimModule (pkg , mirror = 'jupyter_client.%s' % pkg )
2525
2626# required for `from IPython.kernel import PKG`
27- from ipython_kernel import comm , inprocess , resources
27+ from ipython_kernel import comm , inprocess
2828from jupyter_client import ioloop , blocking
2929# public API
3030from ipython_kernel .connect import *
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ def find_package_data():
204204 # 'v3/nbformat.v3.schema.json',
205205 # 'v4/nbformat.v4.schema.json',
206206 # ],
207- 'IPython.kernel' : ['resources/*.*' ],
207+ # 'IPython.kernel': ['resources/*.*'],
208208 }
209209
210210 return package_data
You can’t perform that action at this time.
0 commit comments