Skip to content

Commit 8aead65

Browse files
committed
kernel.resources isn't a package
1 parent 16fd1e3 commit 8aead65

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

IPython/kernel/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
sys.modules['IPython.kernel.zmq.session'] = ShimModule('session', mirror='jupyter_client.session')
1818
sys.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

2323
for 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
2828
from jupyter_client import ioloop, blocking
2929
# public API
3030
from ipython_kernel.connect import *

setupbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)