Skip to content

Commit

Permalink
debug rtd build
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril committed Jun 24, 2024
1 parent 7af0a87 commit 8e18c02
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@

# myst config
nb_execution_mode = "force" if on_readthedocs else "off"
nb_execution_allow_errors = False
nb_execution_raise_on_error = True
nb_execution_allow_errors = True
nb_execution_raise_on_error = False
nb_execution_timeout = 300
nb_kernel_rgx_aliases = {".*": "python3"}
myst_enable_extensions = ["colon_fence", "deflist", "dollarmath", "amsmath", "substitution"]
Expand Down
8 changes: 8 additions & 0 deletions docs/source/learn.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,11 @@ glossary
- {octicon}`plug;1em;sd-text-info` Experimental and cutting edge functionality: {doc}`pmx:index` library
- {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)
is addressed)


```{jupyter-execute}
import inspect
import pymc as pm
print(pm.__version__)
print(inspect.signature(pm.sample_prior_predictive))
```

0 comments on commit 8e18c02

Please sign in to comment.