diff options
| author | Lucian Copeland <hierophect@gmail.com> | 2021-02-01 11:11:49 -0500 |
|---|---|---|
| committer | Lucian Copeland <hierophect@gmail.com> | 2021-02-01 11:43:01 -0500 |
| commit | 66639b237fa4428037cbed0bb87fdb4061127c91 (patch) | |
| tree | 6d530a1c4974d326ba1e7dd80b675854fd5bfe57 /docs/shared_bindings_matrix.py | |
| parent | 8277ffca861754b4df526c62126337c195cc0fee (diff) | |
| parent | 0c0b517112100c1ec90ed66fba8bc315bc5440d0 (diff) | |
Merge remote-tracking branch 'upstream/main' into sslsocket
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(): |
