Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'
python-version: '3.13'
- name: Cache Python modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/Pipfile.lock') }}
Expand All @@ -38,7 +38,7 @@ jobs:
run: |
pipenv run mkdocs build --strict
- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build
path: dist
Expand All @@ -59,16 +59,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: build
path: dist
- name: Setup Pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: dist
- name: Deploy to GitHub Pages
Expand Down
14 changes: 7 additions & 7 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ name = "pypi"
[packages]

[dev-packages]
jupyterlab-language-pack-fr-FR = "==4.0.post6"
jupyterlab-language-pack-fr-FR = "==4.4.post3"
jupyterlab-webrtc-docprovider = "==0.1.1"
jupyterlite-core = {extras = ["all"], version = "==0.1.3"}
jupyterlite-pyodide-kernel = "==0.1.3"
mkdocs = {version = "==1.5.3", extras = ["i18n"]}
mkdocs-material = "==9.5.3"
nbconvert = "==7.16.2"
jupyterlite-core = {extras = ["all"], version = "==0.6.4"}
jupyterlite-pyodide-kernel = "==0.6.1"
mkdocs = {version = "==1.6.1", extras = ["i18n"]}
mkdocs-material = "==9.7.0"
nbconvert = "==7.16.6"

[requires]
python_version = "3.10"
python_version = "3.13"
Loading