Skip to content

Commit 8e18c02

Browse files
committed
debug rtd build
1 parent 7af0a87 commit 8e18c02

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@
147147

148148
# myst config
149149
nb_execution_mode = "force" if on_readthedocs else "off"
150-
nb_execution_allow_errors = False
151-
nb_execution_raise_on_error = True
150+
nb_execution_allow_errors = True
151+
nb_execution_raise_on_error = False
152152
nb_execution_timeout = 300
153153
nb_kernel_rgx_aliases = {".*": "python3"}
154154
myst_enable_extensions = ["colon_fence", "deflist", "dollarmath", "amsmath", "substitution"]

docs/source/learn.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,11 @@ glossary
3131
- {octicon}`plug;1em;sd-text-info` Experimental and cutting edge functionality: {doc}`pmx:index` library
3232
- {octicon}`gear;1em;sd-text-info` PyMC internals guides (To be outlined and referenced here once [pymc#5538](https://github.com/pymc-devs/pymc/issues/5538)
3333
is addressed)
34+
35+
36+
```{jupyter-execute}
37+
import inspect
38+
import pymc as pm
39+
print(pm.__version__)
40+
print(inspect.signature(pm.sample_prior_predictive))
41+
```

0 commit comments

Comments
 (0)