File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ def get_circuitpython_root_dir():
43
43
def get_shared_bindings ():
44
44
""" Get a list of modules in shared-bindings based on folder names
45
45
"""
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" ]
48
48
49
49
50
50
def read_mpconfig ():
@@ -159,6 +159,8 @@ def support_matrix(arg):
159
159
board_contents )
160
160
if board_name_re :
161
161
board_name = board_name_re .group (1 ).strip ('"' )
162
+ else :
163
+ board_name = entry .name
162
164
163
165
board_modules = []
164
166
for module in base :
You can’t perform that action at this time.
0 commit comments