Browse code

remove ipyparallel and distributed as dependencies

We provide compatibility to these libraries, but they are not
dependencies. If the user just wants to use all the cores on their
machine, 'concurrent.futures' is good enough. If they want to use
a cluster, they will have to learn to set up ipyparallel or distributed
themselves *anyway*, so we don't save users any effort by adding the
packages as dependencies

Joseph Weston authored on 19/02/2018 19:30:29
Showing 1 changed files
... ...
@@ -20,8 +20,6 @@ extras_require = {
20 20
         'ipykernel>=4.8.0',  # because https://github.com/ipython/ipykernel/issues/274 and https://github.com/ipython/ipykernel/issues/263
21 21
         'jupyter_client>=5.2.2',  # because https://github.com/jupyter/jupyter_client/pull/314
22 22
         'holoviews>=1.9.1',
23
-        'ipyparallel',
24
-        'distributed',
25 23
         'ipywidgets',
26 24
     ],
27 25
 }