Skip to content

Commit

Permalink
docs(build): cache notebooks during render (#8950)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Apr 12, 2024
1 parent 4ebeb19 commit fd8858d
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ ibis_testing*
result
result-*

# generated mkdocs website
.benchmarks

# tutorial data
Expand Down Expand Up @@ -141,3 +140,10 @@ docs/posts/ibis-duckdb-geospatial/nyc_data.db.wal

# pixi environment directory
.pixi

# jupyter cache directories
docs/**/.jupyter_cache

# quarto generated files
docs/posts-listing.json
docs/posts.feed-full-staged
1 change: 1 addition & 0 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ code-annotations: hover
execute:
warning: false
error: false
cache: true

filters:
- interlinks
Expand Down
33 changes: 30 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ scikit-learn = { version = ">=1.3,<2", python = ">=3.10,<3.13" }
seaborn = { version = ">=0.12.2,<1", python = ">=3.10,<3.13" }
leafmap = { version = ">=0.29.6,<0.31", python = ">=3.10,<3.13" }
lonboard = { version = "==0.4.0", python = ">=3.10,<3.13" }
jupyter-cache = { version = ">=1.0.0,<2", python = ">=3.10,<3.13" }

[tool.poetry.extras]
bigquery = [
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ jinja2==3.1.3 ; python_version >= "3.9" and python_version < "4.0"
joblib==1.4.0 ; python_version >= "3.9" and python_version < "4.0"
jsonschema-specifications==2023.12.1 ; python_version >= "3.10" and python_version < "3.13"
jsonschema==4.21.1 ; python_version >= "3.10" and python_version < "3.13"
jupyter-cache==1.0.0 ; python_version >= "3.10" and python_version < "3.13"
jupyter-client==8.6.1 ; python_version >= "3.10" and python_version < "3.13"
jupyter-core==5.7.2 ; python_version >= "3.10" and python_version < "3.13"
jupyterlab-widgets==3.0.10 ; python_version >= "3.10" and python_version < "3.13"
Expand Down

0 comments on commit fd8858d

Please sign in to comment.