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
3 changes: 1 addition & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[mcp,marimo]"
python -m pip install jupyter polars pandas pyarrow plotnine 'great-tables<0.22'
python -m pip install -e ".[docs]"

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
Expand Down
14 changes: 9 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,19 @@ dev = [
"pyright>=1.1.407",
"build>=0.7",
"twine>=3.4",
"great_tables>=0.21.0",
"pandas>=2.0",
"polars>=0.20",
"pyarrow>=12.0",
"mcp>=1.0.0",
"typer>=0.12.0",
"great-docs[docs]",
]
docs = [
"plotnine>=0.13.0",
"jupyter>=1.0.0",
"polars>=0.20",
"pandas>=2.0",
"pyarrow>=12.0",
# Pin below 0.22: that release depends on multimark, a compiled package
# with no WASM wheel, which breaks the marimo notebooks' Pyodide export.
"great_tables>=0.21.0,<0.22",
"great-docs[mcp,marimo]",
]


Expand Down
Loading