summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py8
-rw-r--r--doc/requirements.txt2
2 files changed, 8 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 12070636..4602a3f4 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -231,7 +231,13 @@ man_pages = [
['Logilab, PyCQA and contributors'], 1)
]
-autodoc_default_flags = ['members', 'undoc-members', 'show-inheritance']
+autodoc_default_options = {
+ 'members': True,
+ 'undoc-members': True,
+ 'show-inheritance': True,
+}
+autodoc_member_order = "groupwise"
+autodoc_typehints = 'description'
intersphinx_mapping = {
'green_tree_snakes':
('http://greentreesnakes.readthedocs.io/en/latest/', 'ast_objects.inv'),
diff --git a/doc/requirements.txt b/doc/requirements.txt
index 96c342cd..3c1df6a6 100644
--- a/doc/requirements.txt
+++ b/doc/requirements.txt
@@ -1,2 +1,2 @@
-e .
-sphinx
+sphinx~=4.0