We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5fb69e2 + 6e2df1c commit 9a2f613Copy full SHA for 9a2f613
3 files changed
.github/workflows/build.yml
@@ -45,6 +45,9 @@ jobs:
45
- name: Pip install pylint, Sphinx, pre-commit
46
run: |
47
pip install --force-reinstall pylint Sphinx sphinx-rtd-theme pre-commit
48
+ - name: Load graphviz
49
+ run: |
50
+ sudo apt install graphviz
51
- name: Library version
52
run: git describe --dirty --always --tags
53
- name: Setup problem matchers
docs/api.rst
@@ -7,3 +7,6 @@
7
.. automodule:: displayio_switchround
8
:members:
9
:member-order: bysource
10
+ :inherited-members:
11
+
12
+.. inheritance-diagram:: adafruit_displayio_layout.widgets.switch_round
docs/conf.py
@@ -19,6 +19,7 @@
19
"sphinx.ext.intersphinx",
20
"sphinx.ext.napoleon",
21
"sphinx.ext.todo",
22
+ "sphinx.ext.inheritance_diagram",
23
]
24
25
# TODO: Please Read!
0 commit comments