Skip to content

Commit 10044cc

Browse files
committed
Add dependency on IPython genutils.
this was an implicit dependency via IPython, which does not requires it anymore and traitlets, which also does not requires it anymore since today. Closes #755
1 parent 00ca9f0 commit 10044cc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ipykernel/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import sys
88
from subprocess import Popen, PIPE
99

10-
from ipython_genutils.path import filefind
1110

1211
import jupyter_client
1312
from jupyter_client import write_connection_file
@@ -22,6 +21,7 @@ def get_connection_file(app=None):
2221
app : IPKernelApp instance [optional]
2322
If unspecified, the currently running app will be used
2423
"""
24+
from ipython_genutils.path import filefind
2525
if app is None:
2626
from ipykernel.kernelapp import IPKernelApp
2727
if not IPKernelApp.initialized():

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def run(self):
6262
keywords=['Interactive', 'Interpreter', 'Shell', 'Web'],
6363
python_requires='>=3.7',
6464
install_requires=[
65+
"ipython_genutils",
6566
'importlib-metadata<5;python_version<"3.8.0"',
6667
'argcomplete>=1.12.3;python_version<"3.8.0"',
6768
'debugpy>=1.0.0,<2.0',

0 commit comments

Comments
 (0)