[python] Upgrade MicroPython to version 1.19.1, Ulab and add unit tests for Ulab (#259)

This commit is contained in:
Yaya-Cout
2022-06-26 13:03:22 +02:00
committed by GitHub
parent 25d4793441
commit 92c653f2f2
177 changed files with 8809 additions and 3819 deletions

View File

@@ -0,0 +1,7 @@
// This file is needed, because MicroPython includes it in the modsys.c file.
// https://github.com/micropython/micropython/commit/402df833fe6da5233c83c58421e81493cda54f67#diff-99822946f0f35edf3fa262e9a3b213da739cfd30f5c8c0c44ef0eb67d7d7b4b0R39
// It is just a hack to make it work.
// It will be needed if the sys module is enabled.
#if MICROPY_PY_SYS
#warning "To build the sys module, you need to use the real moduplatform module from MicroPython."
#endif