Question about manifest.py #15691
gampam2000
started this conversation in
General
Replies: 2 comments 1 reply
-
You might want to take a look at the source in the micropython/extmod/asyncio directory. The manifest.py file there declares asyncio as a package. |
Beta Was this translation helpful? Give feedback.
1 reply
-
fixed |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I use a custom board definition based on micropython-example-boards. Compilation works, but when I want to include/freeze a custom package it does not work.
for example in my
manifest.py
:module("bh1750.py", base_path="../../lib/bh1750/bh1750")
freezes the module correctlypackage("bh1750", base_path="../../lib/bh1750/bh1750")
does not workthe
/lib/bh1750/bh1750/
directory consists of:__init__.py
bh1750.py
I need this to work for other packages with more files.
I have read the manifest.py documentation, but maybe I missed something. Why is
package
not working?Any help is appreciated. Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions