Skip to content

Commit a38cb62

Browse files
committed
doc
1 parent 5e8b5b3 commit a38cb62

File tree

3 files changed

+12
-102
lines changed

3 files changed

+12
-102
lines changed

.circleci/config.yml

Lines changed: 0 additions & 100 deletions
This file was deleted.

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ jobs:
8484
grep ERROR doc.txt
8585
exit 1
8686
fi
87-
if [[ $(grep WARNING doc.txt | grep -v 'download' | grep -v 'CERTIFICATE_VERIFY_FAILED') ]]; then
87+
if [[ $(grep WARNING doc.txt | grep -v 'download' | grep -v 'CERTIFICATE_VERIFY_FAILED' | grep -v '[image.not_readable]') ]]; then
8888
echo "Documentation produces warnings."
89-
cat doc.txt | grep WARNING | grep -v 'CERTIFICATE_VERIFY_FAILED' | grep -v 'download'
89+
cat doc.txt | grep WARNING | grep -v 'CERTIFICATE_VERIFY_FAILED' | grep -v 'download' | grep -v '[image.not_readable]'
9090
exit 1
9191
fi
9292

_doc/conf.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,3 +423,13 @@
423423

424424
imgmath_latex_preamble = preamble
425425
latex_elements["preamble"] = imgmath_latex_preamble
426+
427+
428+
def skip_member(app, what, name, obj, skip, options):
429+
if "RequestMethod" in str(obj):
430+
return True # Skip this member
431+
return skip
432+
433+
434+
def setup(app):
435+
app.connect("autodoc-skip-member", skip_member)

0 commit comments

Comments
 (0)