diff --git a/images/base-notebook/Dockerfile b/images/base-notebook/Dockerfile index 0cde5b5d..dd068c80 100644 --- a/images/base-notebook/Dockerfile +++ b/images/base-notebook/Dockerfile @@ -42,7 +42,11 @@ RUN mamba install --yes \ 'jupyterhub' \ 'jupyterlab' \ 'nbclassic' \ - 'notebook' && \ + # Sometimes, when the new version of `jupyterlab` is released, latest `notebook` might not support it for some time + # Old versions of `notebook` (=7.2.2' && \ jupyter server --generate-config && \ mamba clean --all -f -y && \ npm cache clean --force && \ diff --git a/tests/docker-stacks-foundation/test_packages.py b/tests/docker-stacks-foundation/test_packages.py index 9b70be38..0508ff14 100644 --- a/tests/docker-stacks-foundation/test_packages.py +++ b/tests/docker-stacks-foundation/test_packages.py @@ -76,6 +76,7 @@ EXCLUDED_PACKAGES = [ "hdf5", "jupyterlab-git", "mamba[version='<2.0.0']", + "notebook[version='>", "openssl", "pandas[version='>", "protobuf",