From 7f79672f305562219bac2171fc743a51d8706ecc Mon Sep 17 00:00:00 2001 From: Sylvain Corlay Date: Fri, 17 Jul 2020 13:20:43 +0200 Subject: [PATCH] Drop ipykernel dependency --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7428544cf0..1ef834d707 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,6 @@ 'jupyter_client>=6.1.1', 'nbformat', 'nbconvert', - 'ipykernel', # bless IPython kernel for now 'Send2Trash', 'terminado>=0.8.3', 'prometheus_client', @@ -53,7 +52,7 @@ extras_require = { 'test': ['nose', 'coverage', 'requests', 'nose_warnings_filters', 'pytest', 'pytest-cov', 'pytest-tornasync', - 'pytest-console-scripts'], + 'pytest-console-scripts', 'ipykernel'], 'test:sys_platform == "win32"': ['nose-exclude'], }, entry_points = { @@ -67,4 +66,4 @@ ) if __name__ == '__main__': - setup(**setup_args) \ No newline at end of file + setup(**setup_args)