diff options
| author | Damien George <damien@micropython.org> | 2023-10-16 10:48:36 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-10-16 11:25:31 +1100 |
| commit | 6967ff3c581a66f73e9f3d78975f47528db39980 (patch) | |
| tree | e7794d2ba673ffd49886985461344ee83e0bf954 /tools | |
| parent | 9b63421fb36a9674eda01c1bc111f070b7b81329 (diff) | |
py/persistentcode: Bump .mpy sub-version.
This is required because the previous commit changed the .mpy native ABI.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/mpy-tool.py | 2 | ||||
| -rwxr-xr-x | tools/mpy_ld.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/mpy-tool.py b/tools/mpy-tool.py index 5ef69b267..fc3518d35 100755 --- a/tools/mpy-tool.py +++ b/tools/mpy-tool.py @@ -88,7 +88,7 @@ class FreezeError(Exception): class Config: MPY_VERSION = 6 - MPY_SUB_VERSION = 1 + MPY_SUB_VERSION = 2 MICROPY_LONGINT_IMPL_NONE = 0 MICROPY_LONGINT_IMPL_LONGLONG = 1 MICROPY_LONGINT_IMPL_MPZ = 2 diff --git a/tools/mpy_ld.py b/tools/mpy_ld.py index 7f0fcbca2..d7d0b945c 100755 --- a/tools/mpy_ld.py +++ b/tools/mpy_ld.py @@ -36,7 +36,7 @@ import makeqstrdata as qstrutil # MicroPython constants MPY_VERSION = 6 -MPY_SUB_VERSION = 1 +MPY_SUB_VERSION = 2 MP_CODE_BYTECODE = 2 MP_CODE_NATIVE_VIPER = 4 MP_NATIVE_ARCH_X86 = 1 |
