Skip to content

Commit 540e6d4

Browse files
authored
Merge pull request #3352 from jepler/fix-release-build
shared_bindings_matrix revert to using shared-bindings
2 parents d2d5fe9 + 28f0139 commit 540e6d4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/shared_bindings_matrix.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def get_circuitpython_root_dir():
4343
def get_shared_bindings():
4444
""" Get a list of modules in shared-bindings based on folder names
4545
"""
46-
shared_bindings_dir = get_circuitpython_root_dir() / "circuitpython-stubs"
47-
return [item.name for item in shared_bindings_dir.iterdir()]
46+
shared_bindings_dir = get_circuitpython_root_dir() / "shared-bindings"
47+
return [item.name for item in shared_bindings_dir.iterdir()] + ["ulab"]
4848

4949

5050
def read_mpconfig():
@@ -159,6 +159,8 @@ def support_matrix(arg):
159159
board_contents)
160160
if board_name_re:
161161
board_name = board_name_re.group(1).strip('"')
162+
else:
163+
board_name = entry.name
162164

163165
board_modules = []
164166
for module in base:

0 commit comments

Comments
 (0)