Skip to content

Commit f3d66a3

Browse files
committed
build: fix missing nbsphinx configuration [ci skip]
1 parent 551a4f2 commit f3d66a3

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

docs/conf.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212
version = ".".join(release.split(".")[:2])
1313

1414

15-
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "myst_parser"]
15+
extensions = [
16+
"myst_parser",
17+
"nbsphinx",
18+
"sphinx.ext.autodoc",
19+
"sphinx.ext.napoleon",
20+
]
1621

1722
autodoc_typehints = "description"
1823
html_theme = "pydata_sphinx_theme"
@@ -22,3 +27,6 @@
2227

2328
# add module to path
2429
sys.path.insert(0, os.path.abspath(".."))
30+
31+
# do NOT execute notebooks
32+
nbsphinx_execute = "never"

docs/environment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ dependencies:
55
- python=3.13
66
- gdal=3.10.2
77
- myst-parser=4.0.1
8-
- sphinx=8.2.3
8+
- nbsphinx=0.9.7
9+
- pandoc=3.6.4
910
- pdal=2.8.4
1011
- pip=25.0.1
1112
- pydata-sphinx-theme=0.16.1
1213
- setuptools=75.8.2
14+
- sphinx=8.2.3

0 commit comments

Comments
 (0)