From f69fafcf2e70da0f6cbdedeac62f2e1b4d913576 Mon Sep 17 00:00:00 2001 From: Dou Du Date: Tue, 17 Dec 2024 16:28:52 +0200 Subject: [PATCH] fix the image bug --- .github/workflows/screenshot-comparison.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/screenshot-comparison.yml b/.github/workflows/screenshot-comparison.yml index 1ebceec..1ecd9db 100644 --- a/.github/workflows/screenshot-comparison.yml +++ b/.github/workflows/screenshot-comparison.yml @@ -18,21 +18,22 @@ jobs: - name: Install node uses: actions/setup-node@v4 with: - node-version: '21.x' + node-version: '22.x' - name: Install Python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' architecture: 'x64' - name: Install dependencies - run: + run: | pip install --upgrade pip pip install --upgrade jupyterlab pip install --upgrade voila pip install --upgrade voila-osscar-template pip install --upgrade ase + - name: Install widget + run: pip install -e . - - name: Run the voila server run: | voila --template=osscar --enable_nbextensions=True example/ --port 8383 --no-browser &