diff --git a/Dockerfile.tmpl b/Dockerfile.tmpl index b4e1759e..86098d5e 100644 --- a/Dockerfile.tmpl +++ b/Dockerfile.tmpl @@ -620,8 +620,8 @@ RUN pip install --upgrade dask && \ mkdir -p /etc/ipython/ && echo "c = get_config(); c.IPKernelApp.matplotlib = 'inline'" > /etc/ipython/ipython_config.py && \ # Temporary patch for broken libpixman 0.38 in conda-forge, symlink to system libpixman 0.34 untile conda package gets updated to 0.38.5 or higher. ln -sf /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.34.0 /opt/conda/lib/libpixman-1.so.0.38.0 && \ - # upgrade jupyter-server to version > 2.x - pip install --force-reinstall --no-deps jupyter_server>=2.* && \ + # pin jupyter-server to version 2.12.5; later versions break LSP (b/333854354) + pip install --force-reinstall --no-deps jupyter_server==2.12.5 && \ /tmp/clean-layer.sh # Fix to import bq_helper library without downgrading setuptools