You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@toree.apache.org by lr...@apache.org on 2017/07/08 06:50:49 UTC

incubator-toree git commit: [TOREE-422] Enable Jupyter 5.1.0 dependencies

Repository: incubator-toree
Updated Branches:
  refs/heads/master c7b008506 -> baf839100


[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


Project: http://git-wip-us.apache.org/repos/asf/incubator-toree/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-toree/commit/baf83910
Tree: http://git-wip-us.apache.org/repos/asf/incubator-toree/tree/baf83910
Diff: http://git-wip-us.apache.org/repos/asf/incubator-toree/diff/baf83910

Branch: refs/heads/master
Commit: baf83910067964fea62a9dd508fe82f49b3b3781
Parents: c7b0085
Author: Luciano Resende <lr...@apache.org>
Authored: Sun Jul 2 20:01:28 2017 -0700
Committer: Luciano Resende <lr...@apache.org>
Committed: Fri Jul 7 23:50:17 2017 -0700

----------------------------------------------------------------------
 etc/pip_install/setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-toree/blob/baf83910/etc/pip_install/setup.py
----------------------------------------------------------------------
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 @@ setup_args = dict(
     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=[],