Skip to content

Commit b36e3a1

Browse files
authored
Fix the docs build (#1424)
1 parent 942b14e commit b36e3a1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

doc/conf.py

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@
113113
nb_execution_excludepatterns = [
114114
'user_guide/Streaming.ipynb',
115115
]
116+
# cell execution timeout in seconds (-1 to ignore, 30 by default)
117+
nb_execution_timeout = 120
116118

117119
if os.getenv('HVPLOT_REFERENCE_GALLERY') not in ('False', 'false', '0'):
118120
rediraffe_redirects.update(

envs/py3.11-docs.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
name: hvplotdocs
1111
channels:
1212
- nodefaults
13-
- pyviz/label/dev
1413
- conda-forge
1514
dependencies:
1615
- python=3.11
@@ -35,7 +34,6 @@ dependencies:
3534
- ipywidgets
3635
- jinja2
3736
- matplotlib
38-
- nbsite>=0.8.4
3937
- networkx>=2.6.3
4038
- notebook>=5.4
4139
- numba>=0.51.0

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ ruff = [
221221
geoviews = { skip = true, packages = "geoviews-core >=1.9.0" }
222222
# It should be ibis-framework[duckdb], but it works anyway.
223223
ibis-framework = { skip = true, packages = "ibis-duckdb" }
224+
nbsite = { skip = true }
224225

225226
[tool.pyproject2conda.envs."tests"]
226227
channels = ["nodefaults", "pyviz/label/dev", "conda-forge"]
@@ -230,7 +231,7 @@ name = "hvplottests"
230231
# reqs = ["-e .."] # Doesn't work
231232

232233
[tool.pyproject2conda.envs."docs"]
233-
channels = ["nodefaults", "pyviz/label/dev", "conda-forge"]
234+
channels = ["nodefaults", "conda-forge"]
234235
python = ["3.11"]
235236
extras = ["doc", "examples", "geo", "graphviz", "dev-extras"]
236237
name = "hvplotdocs"

0 commit comments

Comments
 (0)