1 parent 320eefc commit 3d493f3Copy full SHA for 3d493f3
3 files changed
.github/workflows/publish.yml
@@ -29,6 +29,13 @@ jobs:
29
- name: Install the project
30
run: uv sync --locked --all-extras --dev
31
32
+ - name: Install Python dependencies
33
+ run: |
34
+ uv add pyyaml
35
+ uv add jupyter
36
+ # Add any other Python packages your notebook needs
37
+ # pip install pandas matplotlib seaborn etc.
38
+
39
- name: Activate Python virtual environment
40
run: |
41
source .venv/bin/activate
pyproject.toml
@@ -17,6 +17,7 @@ requires-python = ">=3.13"
17
dependencies = [
18
"great-tables>=0.18.0",
19
"ipykernel>=6.30.1",
20
+ "jupyter>=1.1.1",
21
"mizani>=0.14.2",
22
"mpl-fontkit>=0.5.1",
23
"nbclient>=0.10.2",
0 commit comments