This repository was archived by the owner on Dec 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+
1013import 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+
356364if __name__ == "__main__" :
357365 app .run ()
You can’t perform that action at this time.
0 commit comments