summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorzhang.lei <zhang.lei@99cloud.net>2018-09-19 01:35:57 +0000
committerzhang.lei <zhang.lei@99cloud.net>2018-09-19 01:35:57 +0000
commitf9349f4301d3892fe797498c65d1c0768abc35a3 (patch)
tree2a11b5d58cf227a34eb0601e881213f0ba42ad7d /doc
parentf1617472f9e10f75f655c111997cce291c18b21b (diff)
downloadtaskflow-f9349f4301d3892fe797498c65d1c0768abc35a3.tar.gz
Update doc/conf.py to avoid warnings with sphinx 1.83.3.13.3.0
The autodoc_default_flags option is now deprecated.[1] This warning can cause documentation build failed. use autodoc_default_options instead. [1]https://github.com/matplotlib/matplotlib/pull/11928 Change-Id: I6ba69ca7361fd0e42b322f1b92fe22b952a13321
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 338027a..6522da3 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -94,5 +94,5 @@ latex_documents = [
autodoc_member_order = 'bysource'
# Always include members
-autodoc_default_flags = ['members', 'show-inheritance']
+autodoc_default_options = {'members': None, 'show-inheritance': None}