[TOREE-422] Enable Jupyter 5.1.0 dependencies

Enable Jupyter 5.1.0 dependencies to avoid issues with
downgrading Jupyter Client to 4.x in distributions such as
anaconda.

Closes #127
diff --git a/etc/pip_install/setup.py b/etc/pip_install/setup.py
index 80b1862..44a2422 100644
--- a/etc/pip_install/setup.py
+++ b/etc/pip_install/setup.py
@@ -51,8 +51,8 @@
     packages=['toree'],
     include_package_data=True,
     install_requires=[
-        'jupyter_core>=4.0, <5.0',
-        'jupyter_client>=4.0, <5.0',
+        'jupyter_core>=4.0',
+        'jupyter_client>=4.0',
         'traitlets>=4.0, <5.0'
     ],
     data_files=[],