8000 ensure all port bindings are included · jepler/circuitpython@270e92f · GitHub
[go: up one dir, main page]

Skip to content

Commit 270e92f

Browse files
committed
ensure all port bindings are included
1 parent bf84e13 commit 270e92f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,8 @@ stubs:
265265
@mkdir circuitpython-stubs
266266
@$(PYTHON) tools/extract_pyi.py shared-bindings/ $(STUBDIR)
267267
@$(PYTHON) tools/extract_pyi.py extmod/ulab/code/ $(STUBDIR)/ulab
268-
@$(PYTHON) tools/extract_pyi.py ports/atmel-samd/bindings $(STUBDIR)
269-
@$(PYTHON) tools/extract_pyi.py ports/espressif/bindings $(STUBDIR)
270-
@$(PYTHON) tools/extract_pyi.py ports/raspberrypi/bindings $(STUBDIR)
268+
@for d in ports/*/bindings; do \
269+
$(PYTHON) tools/extract_pyi.py "$$d" $(STUBDIR); done
271270
@sed -e "s,__version__,`python -msetuptools_scm`," < setup.py-stubs > circuitpython-stubs/setup.py
272271
@cp README.rst-stubs ci 3DD8 rcuitpython-stubs/README.rst
273272
@cp MANIFEST.in-stubs circuitpython-stubs/MANIFEST.in

0 commit comments

Comments
 (0)
0