dbafba889d
Originally, all Makefile variables were implicitly included in settings[]. When I revised ci_set_matrix, only explicltly named variables are included. Depending on the set of changed files, ci_set_matrix needs the SRC_PATTERNS variable, so include it explicitly. Typical error, seen in the history of building this PR: ``` Traceback (most recent call last): File "/home/runner/work/circuitpython/circuitpython/tools/ci_set_matrix.py", line 309, in <module> main() File "/home/runner/work/circuitpython/circuitpython/tools/ci_set_matrix.py", line 305, in main set_boards(run_all) File "/home/runner/work/circuitpython/circuitpython/tools/ci_set_matrix.py", line 215, in set_boards if module in settings["SRC_PATTERNS"]: ~~~~~~~~^^^^^^^^^^^^^^^^ KeyError: 'SRC_PATTERNS' Error: Process completed with exit code 1. ``` |
||
---|---|---|
.. | ||
autoapi/templates/python | ||
library | ||
readthedocs/settings | ||
reference | ||
static | ||
templates | ||
LICENSE.md | ||
README.md | ||
common_hal.md | ||
design_guide.rst | ||
environment.rst | ||
index.rst | ||
libraries.rst | ||
porting.rst | ||
redirects.txt | ||
rstjinja.py | ||
shared_bindings_matrix.py | ||
supported_ports.rst | ||
troubleshooting.rst | ||
workflows.md |
README.md
Adafruit's CircuitPython Documentation
The latest documentation can be found at: http://circuitpython.readthedocs.io/en/latest/
The documentation you see there is generated from the files in the whole tree: https://github.com/adafruit/circuitpython/tree/main
Building the documentation locally
If you're making changes to the documentation, you should build the documentation locally so that you can preview your changes.
Install the necessary packages, preferably in a virtualenv, in circuitpython/
:
pip install -r requirements-doc.txt
In circuitpython/
, build the docs:
make html
You'll find the index page at _build/html/index.html
.
More flexibility
Running make
by itself will list out the multiple doc generating commands available.
All commands will, by default, run with -E
(forces a rebuild from scratch of docs) and -v
(verbosity level 1). This can be customized as desired:
# will turn OFF the force rebuild
make html FORCE=
# will turn OFF the verbosity
make html VERBOSE=
# will turn OFF the force rebuild and make it doubly verbose when running
make html FORCE= VERBOSE="-v -v"
You can also pass other options to sphinx by using SPHINXOPTS
.
make html SPHINXOPTS="-T"
For more flexibility and customization, take a look at the Makefile for all variables you can pass in and overwrite.