Skip to content
Open
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
5 changes: 5 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@ def skip(app, what, name, obj, would_skip, options):
def setup(app):
app.connect("autodoc-skip-member", skip)

import warnings

warnings.filterwarnings("ignore", category=UserWarning,
message='Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.')

# Include the example source for plots in API docs
# plot_include_source = True
# plot_formats = [("png", 90)]
Expand Down
Loading