downgrade jupyter-book version due to error

This commit is contained in:
2023-03-09 10:09:01 +01:00
parent 9932bff9d9
commit f5b17de056
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ image: registry.hub.docker.com/bitnami/minideb:bullseye
before_script:
# following ones get updated, so they are not installed from Debian package repo: python3-sphinx python3-pybtex python3-pybtex-docutils
- install_packages pip jupyter-notebook python3-anyio python3-greenlet python3-click python3-jupyter-server python3-sqlalchemy python3-latexcodec python3-nbclient python3-nest-asyncio python3-smmap python3-soupsieve python3-toml
- pip install jupyter-book && rm -r /root/.cache/pip
# limit to v0.14.0 until there is a fix for https://github.com/executablebooks/jupyter-book/issues/1964
- pip install jupyter-book==0.14.0 && rm -r /root/.cache/pip
pages:
stage: deploy
+2 -1
View File
@@ -3,7 +3,8 @@ FROM registry.hub.docker.com/bitnami/minideb:bullseye
#RUN apt-get update
# following ones get updated, so they are not installed from Debian package repo: python3-sphinx python3-pybtex python3-pybtex-docutils
RUN install_packages pip jupyter-notebook python3-anyio python3-greenlet python3-click python3-jupyter-server python3-sqlalchemy python3-latexcodec python3-nbclient python3-nest-asyncio python3-smmap python3-soupsieve python3-toml
RUN pip install jupyter-book && rm -r /root/.cache/pip
# limit to v0.14.0 until there is a fix for https://github.com/executablebooks/jupyter-book/issues/1964
RUN pip install jupyter-book==0.14.0 && rm -r /root/.cache/pip
RUN mkdir -p /root/documentation
COPY . /root/documentation