You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the merge of #8914 there's now a dependency on import mpy_cross to build micropython.
If a user already has my python mpy_cross package installed however it gets picked up instead, throwing the error during make:
Traceback (most recent call last):
File "../../tools/makemanifest.py", line 197, in main
mpy_cross.compile(
AttributeError: module 'mpy_cross' has no attribute 'compile'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "../../tools/makemanifest.py", line 264, in <module>
main()
File "../../tools/makemanifest.py", line 205, in main
except mpy_cross.CrossCompileError as ex:
AttributeError: module 'mpy_cross' has no attribute 'CrossCompileError'
The fix currently is to pip uninstall mpy_cross but we should look at publishing the new mpy_cross package / wrapper to pypi directly from here?
The text was updated successfully, but these errors were encountered:
With the merge of #8914 there's now a dependency on
import mpy_cross
to build micropython.If a user already has my python
mpy_cross
package installed however it gets picked up instead, throwing the error during make:The fix currently is to
pip uninstall mpy_cross
but we should look at publishing the new mpy_cross package / wrapper to pypi directly from here?The text was updated successfully, but these errors were encountered: