Skip to content

Commit af1dbff

Browse files
make html static
1 parent 844a6fb commit af1dbff

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/publish-marimo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
python-version: '3.11'
2121

2222
- name: Install Marimo
23-
run: pip install marimo
23+
run: pip install marimo
2424

2525
- name: Export Marimo Notebook
2626
run: |
27-
marimo export html-wasm data_science_tools/polars_vs_pandas.py -o build/data_science_tools/polars_vs_pandas --show-code
28-
marimo export html-wasm llm/pydantic_ai_examples.py -o build/llm/pydantic_ai_examples --show-code
27+
marimo export html data_science_tools/polars_vs_pandas.py -o build/data_science_tools/polars_vs_pandas.html
28+
marimo export html llm/pydantic_ai_examples.py -o build/llm/pydantic_ai_examples.html
2929
3030
- name: Upload Pages Artifact
3131
uses: actions/upload-pages-artifact@v3

data_science_tools/polars_vs_pandas.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
# requires-python = ">=3.11"
33
# dependencies = [
44
# "marimo",
5+
# "matplotlib==3.10.1",
56
# "numpy==2.2.5",
67
# "pandas==2.2.3",
78
# "polars==1.27.1",
9+
# "seaborn==0.13.2",
810
# ]
911
# ///
12+
1013
import marimo
1114

1215
__generated_with = "0.13.0"
@@ -353,5 +356,10 @@ def _(pandas_df, polars_df):
353356
return
354357

355358

359+
@app.cell
360+
def _():
361+
return
362+
363+
356364
if __name__ == "__main__":
357365
app.run()

0 commit comments

Comments
 (0)