We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243a717 commit 336d6b9Copy full SHA for 336d6b9
circuitpython_build_tools/scripts/build_bundles.py
@@ -39,10 +39,12 @@
39
40
import pkg_resources
41
42
-LINUX_LIBRARIES = [
+BLINKA_LIBRARIES = [
43
"adafruit-blinka",
44
"adafruit-blinka-bleio",
45
"adafruit-blinka-displayio",
46
+ "adafruit-blinka-pyportal",
47
+ "adafruit-python-extended-bus",
48
"pyserial",
49
]
50
@@ -88,7 +90,7 @@ def get_bundle_requirements(directory, package_list):
88
90
line = re.split("[<|>|=|]", line)[0]
89
91
if line not in dependencies and line in package_list:
92
dependencies.append(package_list[line]["module_name"])
- elif line not in pypi_reqs and line not in LINUX_LIBRARIES:
93
+ elif line not in pypi_reqs and line not in BLINKA_LIBRARIES:
94
pypi_reqs.append(line)
95
return dependencies, pypi_reqs
96
0 commit comments