From e7b4b68e6a0cf8a02906e37b36ea2f6bdf68e9a6 Mon Sep 17 00:00:00 2001 From: Tetsuo Koyama Date: Wed, 9 Aug 2023 16:04:45 +0900 Subject: [PATCH 1/4] Fix dependencies of jupyterlab and ipywidgets --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a448c95f..a975b11de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ COPY . $HOME RUN pip install pyvista RUN pip install pyinstaller==5.1 RUN pip install sphinx -RUN pip install jupyterlab +RUN pip install jupyterlab<4.0.0 +RUN pip install ipywidgets<8.0.0 RUN pip install tqdm RUN pip install imageio>=2.5.0 RUN pip install imageio-ffmpeg From 15fd08f75c50a1aaf0ee56a620b0f386b3bec45b Mon Sep 17 00:00:00 2001 From: Tetsuo Koyama Date: Wed, 9 Aug 2023 16:08:43 +0900 Subject: [PATCH 2/4] Update Dockerfile --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a975b11de..1901e0a4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,6 @@ COPY . $HOME RUN pip install pyvista RUN pip install pyinstaller==5.1 RUN pip install sphinx -RUN pip install jupyterlab<4.0.0 -RUN pip install ipywidgets<8.0.0 RUN pip install tqdm RUN pip install imageio>=2.5.0 RUN pip install imageio-ffmpeg From b9c70a2a53fbbf1765e2a273bea08457934f987d Mon Sep 17 00:00:00 2001 From: Tetsuo Koyama Date: Wed, 9 Aug 2023 16:22:16 +0900 Subject: [PATCH 3/4] Update requirements.txt --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5d47f8272..66474a3ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,8 @@ cmocean imageio>=2.5.0 imageio-ffmpeg -jupyterlab +ipywidgets<8.0.0 +jupyterlab<4.0.0 matplotlib pyinstaller==5.6.2 pyqt5 From d373b172eee691d518751b28e929743ba8ac32d3 Mon Sep 17 00:00:00 2001 From: Tetsuo Koyama Date: Wed, 16 Aug 2023 15:39:07 +0900 Subject: [PATCH 4/4] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1901e0a4f..0a448c95f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ COPY . $HOME RUN pip install pyvista RUN pip install pyinstaller==5.1 RUN pip install sphinx +RUN pip install jupyterlab RUN pip install tqdm RUN pip install imageio>=2.5.0 RUN pip install imageio-ffmpeg