Skip to content

Commit

Permalink
kernel.resources isn't a package
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Mar 28, 2015
1 parent 16fd1e3 commit 8aead65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions IPython/kernel/__init__.py
Expand Up @@ -17,14 +17,14 @@
sys.modules['IPython.kernel.zmq.session'] = ShimModule('session', mirror='jupyter_client.session')
sys.modules['IPython.kernel.zmq'] = ShimModule('zmq', mirror='ipython_kernel')

for pkg in ('comm', 'inprocess', 'resources'):
for pkg in ('comm', 'inprocess'):
sys.modules['IPython.kernel.%s' % pkg] = ShimModule(pkg, mirror='ipython_kernel.%s' % pkg)

for pkg in ('ioloop', 'blocking'):
sys.modules['IPython.kernel.%s' % pkg] = ShimModule(pkg, mirror='jupyter_client.%s' % pkg)

# required for `from IPython.kernel import PKG`
from ipython_kernel import comm, inprocess, resources
from ipython_kernel import comm, inprocess
from jupyter_client import ioloop, blocking
# public API
from ipython_kernel.connect import *
Expand Down
2 changes: 1 addition & 1 deletion setupbase.py
Expand Up @@ -204,7 +204,7 @@ def find_package_data():
# 'v3/nbformat.v3.schema.json',
# 'v4/nbformat.v4.schema.json',
# ],
'IPython.kernel': ['resources/*.*'],
# 'IPython.kernel': ['resources/*.*'],
}

return package_data
Expand Down

0 comments on commit 8aead65

Please sign in to comment.