From 4d2539c34e259bfd0fb07e7d75caa499118ca755 Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Mon, 20 Jul 2026 15:29:56 +0100 Subject: [PATCH 1/4] install jupyterlab codio ext from test pypi --- gpu-cuda/Dockerfile | 1 + gpu-cuda/requirements.txt | 1 - standard/Dockerfile | 1 + standard/requirements.txt | 1 - 4 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gpu-cuda/Dockerfile b/gpu-cuda/Dockerfile index 1cf95d5..5080be0 100644 --- a/gpu-cuda/Dockerfile +++ b/gpu-cuda/Dockerfile @@ -20,6 +20,7 @@ USER ${NB_UID} COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/ RUN pip install --no-cache-dir -r /tmp/requirements.txt +RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.20" RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyter-collaboration-codio==4.1.4rc0" # Expose Jupyter port diff --git a/gpu-cuda/requirements.txt b/gpu-cuda/requirements.txt index 0a606b4..d2a5d88 100644 --- a/gpu-cuda/requirements.txt +++ b/gpu-cuda/requirements.txt @@ -35,7 +35,6 @@ einops # Jupyter Extensions ipywidgets jupyter-contrib-nbextensions -jupyterlab-v4-codio-ext # Other Utilities Pillow diff --git a/standard/Dockerfile b/standard/Dockerfile index b83303d..3705c11 100644 --- a/standard/Dockerfile +++ b/standard/Dockerfile @@ -16,6 +16,7 @@ USER ${NB_UID} COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/ RUN pip install --no-cache-dir -r /tmp/requirements.txt +RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.20" RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyter-collaboration-codio==4.1.4rc0" # Expose Jupyter port diff --git a/standard/requirements.txt b/standard/requirements.txt index 34cf3fc..33991ba 100644 --- a/standard/requirements.txt +++ b/standard/requirements.txt @@ -18,7 +18,6 @@ einops # Jupyter Extensions ipywidgets jupyter-contrib-nbextensions -jupyterlab-v4-codio-ext # Other Utilities Pillow From 256b1d77327662a1e2ca24d6da8c1e2746420f45 Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Tue, 21 Jul 2026 09:56:42 +0100 Subject: [PATCH 2/4] pin jupyterlab version --- standard/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standard/Dockerfile b/standard/Dockerfile index 3705c11..326e44d 100644 --- a/standard/Dockerfile +++ b/standard/Dockerfile @@ -16,7 +16,7 @@ USER ${NB_UID} COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/ RUN pip install --no-cache-dir -r /tmp/requirements.txt -RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.20" +RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.21" RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyter-collaboration-codio==4.1.4rc0" # Expose Jupyter port From 6adf2f44f5f8a4dcb510ca4e2afab824021f34f3 Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Tue, 21 Jul 2026 17:58:40 +0100 Subject: [PATCH 3/4] pin ext version --- standard/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standard/Dockerfile b/standard/Dockerfile index 326e44d..84a64f8 100644 --- a/standard/Dockerfile +++ b/standard/Dockerfile @@ -16,7 +16,7 @@ USER ${NB_UID} COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/ RUN pip install --no-cache-dir -r /tmp/requirements.txt -RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.21" +RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.22" RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyter-collaboration-codio==4.1.4rc0" # Expose Jupyter port From 843dbe9128c96f92d7bb314a1c51aca476ad0ea6 Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Fri, 24 Jul 2026 14:51:59 +0100 Subject: [PATCH 4/4] bump version for cuda --- gpu-cuda/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu-cuda/Dockerfile b/gpu-cuda/Dockerfile index 5080be0..a813125 100644 --- a/gpu-cuda/Dockerfile +++ b/gpu-cuda/Dockerfile @@ -20,7 +20,7 @@ USER ${NB_UID} COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/ RUN pip install --no-cache-dir -r /tmp/requirements.txt -RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.20" +RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyterlab-v4-codio-ext==0.1.22" RUN pip install --force-reinstall --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "jupyter-collaboration-codio==4.1.4rc0" # Expose Jupyter port