Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ def check_if_missing_expected_example(el, converted):
return

def is_no_ex_decorator(x):
if x == "no_example()":
# With griffe<0.42.0, it kept parentheses on decorators, but as of 0.42.0, it
# removes them. At some point in the future we can just use the no-parens case.
if x == "no_example()" or x == "no_example":
return True

no_ex_decorators = [
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ doc =
jupyter_client < 8.0.0
tabulate
shinylive
pydantic==1.10
quartodoc==0.7.2
griffe==0.33.0
pydantic>=2.7.4
quartodoc==0.7.5
griffe

[options.packages.find]
include = shiny, shiny.*
Expand Down