diff options
| author | Bernhard Boser <boser@berkeley.edu> | 2021-01-27 09:22:41 -0800 |
|---|---|---|
| committer | Bernhard Boser <boser@berkeley.edu> | 2021-01-27 09:22:41 -0800 |
| commit | e285b5b98ca24c877b794f1a4e019693c130b1bc (patch) | |
| tree | 4d4d5c420e9e5a56b7ae1d196438e4694b298642 /docs/shared_bindings_matrix.py | |
| parent | 16d54586c1b5cbf839ee8fbb78cf56dd105096f3 (diff) | |
| parent | 45b3c9ae4213008da092d5bb35e8602e1e90bca2 (diff) | |
Merge remote-tracking branch 'adafruit/main' into cp-flow
Diffstat (limited to 'docs/shared_bindings_matrix.py')
| -rw-r--r-- | docs/shared_bindings_matrix.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/shared_bindings_matrix.py b/docs/shared_bindings_matrix.py index f38c0b64a..e62b1d218 100644 --- a/docs/shared_bindings_matrix.py +++ b/docs/shared_bindings_matrix.py @@ -30,7 +30,7 @@ import sys from concurrent.futures import ThreadPoolExecutor -SUPPORTED_PORTS = ['atmel-samd', 'esp32s2', 'litex', 'mimxrt10xx', 'nrf', 'stm'] +SUPPORTED_PORTS = ['atmel-samd', 'cxd56', 'esp32s2', 'litex', 'mimxrt10xx', 'nrf', 'raspberrypi', 'stm'] def get_circuitpython_root_dir(): """ The path to the root './circuitpython' directory @@ -44,7 +44,7 @@ def get_shared_bindings(): """ Get a list of modules in shared-bindings based on folder names """ shared_bindings_dir = get_circuitpython_root_dir() / "shared-bindings" - return [item.name for item in shared_bindings_dir.iterdir()] + ["ulab"] + return [item.name for item in shared_bindings_dir.iterdir()] + ["binascii", "errno", "json", "re", "ulab"] def read_mpconfig(): |
