Skip to content

Commit

Permalink
MOTOR-794 Fix support for Sphinx 4 (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneHarvey committed Jul 22, 2021
1 parent c81993e commit 94416e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,10 @@
# If false, no module index is generated.
#latex_use_modindex = True

autodoc_default_flags = ['inherited-members']
autodoc_member_order = 'groupwise'
autodoc_default_options = {
'inherited-members': True,
'member-order': 'groupwise',
}

pymongo_inventory = ('https://pymongo.readthedocs.io/en/%s/' % pymongo_version,
None)
Expand Down

0 comments on commit 94416e8

Please sign in to comment.