Skip to content

Commit 336d6b9

Browse files
committed
Changed LINUX LIBS to BLINKA LIBS and added a couple more
1 parent 243a717 commit 336d6b9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

circuitpython_build_tools/scripts/build_bundles.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@
3939

4040
import pkg_resources
4141

42-
LINUX_LIBRARIES = [
42+
BLINKA_LIBRARIES = [
4343
"adafruit-blinka",
4444
"adafruit-blinka-bleio",
4545
"adafruit-blinka-displayio",
46+
"adafruit-blinka-pyportal",
47+
"adafruit-python-extended-bus",
4648
"pyserial",
4749
]
4850

@@ -88,7 +90,7 @@ def get_bundle_requirements(directory, package_list):
8890
line = re.split("[<|>|=|]", line)[0]
8991
if line not in dependencies and line in package_list:
9092
dependencies.append(package_list[line]["module_name"])
91-
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:
9294
pypi_reqs.append(line)
9395
return dependencies, pypi_reqs
9496

0 commit comments

Comments
 (0)