[docs] Added inherited-members.

Closes: #403
This commit is contained in:
Fabio Manganiello 2024-06-06 03:25:16 +02:00
parent 8814859abc
commit 6b11db7afb
Signed by: blacklight
GPG key ID: D90FBA7F76362774
2 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,7 @@
## [Unreleased] ## [Unreleased]
- [#405] Fixed timezone/timestamp rendering issues for `calendar.ical` events. - [#405] Fixed timezone/timestamp rendering issues for `calendar.ical` events.
- [#403] Included inherited actions in plugins docs.
## [1.0.7] - 2024-06-02 ## [1.0.7] - 2024-06-02

View file

@ -21,7 +21,7 @@ sys.path.insert(0, os.path.abspath("./_ext"))
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'Platypush' project = 'Platypush'
copyright = '2017-2023, Fabio Manganiello' copyright = '2017-2024, Fabio Manganiello'
author = 'Fabio Manganiello <fabio@manganiello.tech>' author = 'Fabio Manganiello <fabio@manganiello.tech>'
# The short X.Y version # The short X.Y version
@ -199,6 +199,7 @@ intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
autodoc_default_options = { autodoc_default_options = {
'members': True, 'members': True,
'show-inheritance': True, 'show-inheritance': True,
'inherited-members': True,
} }
sys.path.insert(0, os.path.abspath('../..')) sys.path.insert(0, os.path.abspath('../..'))