From c5ed8fb49a242a2951deebc11e3d16c27801c0cf Mon Sep 17 00:00:00 2001 From: Charles Parr Date: Thu, 18 Jul 2024 13:35:03 -0800 Subject: [PATCH 1/2] explicit pyodide kernel version --- requirements.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2496ef7..51b280e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,10 @@ # Core modules (mandatory) jupyterlite-core==0.3.0 -jupyterlab~=4.1.1 -jupyterlite-pyodide-kernel -jupyterlab-open-url-parameter +jupyterlab~=4.1.6 +notebook~=7.1.2 + +# Python kernel (technically optional) +jupyterlite-pyodide-kernel==0.3.2 # Python: libraries (optional) pandas From e45ab0e2a86e60e6a2afc455db2a434d59a9f7df Mon Sep 17 00:00:00 2001 From: Charles Parr Date: Thu, 18 Jul 2024 13:35:31 -0800 Subject: [PATCH 2/2] update github actions versions --- .github/workflows/deploy.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 93911b6..38513ca 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,18 +6,18 @@ on: - main pull_request: branches: - - '*' + - "*" jobs: build: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: "3.11" - name: Install the dependencies run: | python -m pip install -r requirements.txt @@ -26,7 +26,7 @@ jobs: cp README.md content jupyter lite build --contents content --output-dir dist - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: ./dist @@ -45,5 +45,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 - + uses: actions/deploy-pages@v4