From 4accfd0465e63e9c8076f5562d3696597d615b86 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Mon, 29 Oct 2018 11:17:47 -0700 Subject: [PATCH] Upgrade package versions Upgrades following packages: - JupyterHub - JupyterLab - Notebook - nteract --- integration-tests/test_extensions.py | 4 ++-- tljh/installer.py | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/integration-tests/test_extensions.py b/integration-tests/test_extensions.py index f0adb08..e8a61fa 100644 --- a/integration-tests/test_extensions.py +++ b/integration-tests/test_extensions.py @@ -13,9 +13,9 @@ def test_serverextensions(): ], stderr=subprocess.PIPE) extensions = [ - 'jupyterlab 0.34.1', + 'jupyterlab 0.35.3', 'nbgitpuller 0.6.1', - 'nteract_on_jupyter 1.8.1', + 'nteract_on_jupyter 1.9.12', 'nbresuse ' ] diff --git a/tljh/installer.py b/tljh/installer.py index e1a66d9..6f6ce4b 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -185,7 +185,7 @@ def ensure_jupyterhub_package(prefix): and conda packages! """ conda.ensure_pip_packages(prefix, [ - 'jupyterhub==0.9.2', + 'jupyterhub==0.9.4', 'jupyterhub-dummyauthenticator==0.3.1', 'jupyterhub-systemdspawner==0.11', 'jupyterhub-firstuseauthenticator==0.11', @@ -237,11 +237,11 @@ def ensure_user_environment(user_requirements_txt_file): conda.ensure_pip_packages(USER_ENV_PREFIX, [ # JupyterHub + notebook package are base requirements for user environment - 'jupyterhub==0.9.2', - 'notebook==5.6.0', + 'jupyterhub==0.9.4', + 'notebook==5.7.0', # Install additional notebook frontends! - 'jupyterlab==0.34.1', - 'nteract-on-jupyter==1.8.1', + 'jupyterlab==0.35.3', + 'nteract-on-jupyter==1.9.12', # nbgitpuller for easily pulling in Git repositories 'nbgitpuller==0.6.1', # nbresuse to show people how much RAM they are using