From e81803ffe5078fa94ade8c15c06ac609c213bf39 Mon Sep 17 00:00:00 2001 From: ymao2 Date: Tue, 27 Sep 2022 23:28:47 +0100 Subject: [PATCH 1/3] ANPL-1211 add git extention --- datascience-notebook/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/datascience-notebook/Dockerfile b/datascience-notebook/Dockerfile index 2afd78c..617b10e 100644 --- a/datascience-notebook/Dockerfile +++ b/datascience-notebook/Dockerfile @@ -28,6 +28,8 @@ RUN pip install --upgrade \ rtree \ "s3fs<=0.4" +RUN pip install --upgrade jupyterlab jupyterlab-git + RUN conda install --yes \ 'nbstripout' From 0c894b92f66109b6f1a107e15c213f100ab69d9a Mon Sep 17 00:00:00 2001 From: ymao2 Date: Tue, 27 Sep 2022 23:59:59 +0100 Subject: [PATCH 2/3] try to address the failed test spec --- datascience-notebook/tests/controls/jupyter_lab_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datascience-notebook/tests/controls/jupyter_lab_spec.rb b/datascience-notebook/tests/controls/jupyter_lab_spec.rb index 355a755..c9f76ef 100644 --- a/datascience-notebook/tests/controls/jupyter_lab_spec.rb +++ b/datascience-notebook/tests/controls/jupyter_lab_spec.rb @@ -8,6 +8,6 @@ describe command('jupyter-lab --version') do its('exit_status') { should eq 0 } - its('stdout') { should match /3.1.11/ } + its('stdout') { should match /3.4.7/ } end end From 0185393a00e853f3c70a2d0bae4a98b05eb86f93 Mon Sep 17 00:00:00 2001 From: ymao2 Date: Wed, 28 Sep 2022 00:27:31 +0100 Subject: [PATCH 3/3] try to address jupyter version problem --- datascience-notebook/Dockerfile | 2 +- datascience-notebook/tests/controls/jupyter_lab_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/datascience-notebook/Dockerfile b/datascience-notebook/Dockerfile index 617b10e..e962ee7 100644 --- a/datascience-notebook/Dockerfile +++ b/datascience-notebook/Dockerfile @@ -28,7 +28,7 @@ RUN pip install --upgrade \ rtree \ "s3fs<=0.4" -RUN pip install --upgrade jupyterlab jupyterlab-git +RUN pip install --upgrade jupyterlab-git RUN conda install --yes \ 'nbstripout' diff --git a/datascience-notebook/tests/controls/jupyter_lab_spec.rb b/datascience-notebook/tests/controls/jupyter_lab_spec.rb index c9f76ef..355a755 100644 --- a/datascience-notebook/tests/controls/jupyter_lab_spec.rb +++ b/datascience-notebook/tests/controls/jupyter_lab_spec.rb @@ -8,6 +8,6 @@ describe command('jupyter-lab --version') do its('exit_status') { should eq 0 } - its('stdout') { should match /3.4.7/ } + its('stdout') { should match /3.1.11/ } end end