Browse code

pin ipykernel and jupyter_client to get relevant bug fixes

See the following issues / MR:
- https://github.com/ipython/ipykernel/issues/274
- https://github.com/ipython/ipykernel/issues/263
- https://github.com/jupyter/jupyter_client/pull/314

ttps://github.com/jupyter/jupyter_client/pull/314# Please enter the commit message for your changes. Lines starting

Bas Nijholt authored on 15/02/2018 11:40:30
Showing 1 changed files
... ...
@@ -4,7 +4,14 @@
4 4
 from setuptools import setup
5 5
 
6 6
 
7
-install_requires = ['scipy', 'ipython', 'sortedcontainers']
7
+install_requires = [
8
+    'scipy',
9
+    'ipython',
10
+    'sortedcontainers',
11
+    'ipykernel>=4.8.0',  # because https://github.com/ipython/ipykernel/issues/274 and https://github.com/ipython/ipykernel/issues/263
12
+    'jupyter_client>=5.2.2',  # because https://github.com/jupyter/jupyter_client/pull/314
13
+]
14
+
8 15
 extras_require = {'recommended': ['holoviews>=1.9.1', 'ipyparallel', 'distributed']}
9 16
 
10 17
 setup(