diff options
author | Damien George <damien.p.george@gmail.com> | 2019-09-26 16:39:37 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-09-26 16:39:37 +1000 |
commit | 5716c5cf65e9b2cb46c2906f40302401bdd27517 (patch) | |
tree | c3e3ecc5efaae279c8c434df5a5320ec216be284 /tools/mpy-tool.py | |
parent | 96f2a3807583945042b628b5184b0c91cf2714a2 (diff) |
py/persistentcode: Bump .mpy version to 5.
The bytecode opcodes have changed (there are more, and they have been
reordered).
Diffstat (limited to 'tools/mpy-tool.py')
-rwxr-xr-x | tools/mpy-tool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mpy-tool.py b/tools/mpy-tool.py index c6f90e4f8..4f8e965d7 100755 --- a/tools/mpy-tool.py +++ b/tools/mpy-tool.py @@ -57,7 +57,7 @@ class FreezeError(Exception): return 'error while freezing %s: %s' % (self.rawcode.source_file, self.msg) class Config: - MPY_VERSION = 4 + MPY_VERSION = 5 MICROPY_LONGINT_IMPL_NONE = 0 MICROPY_LONGINT_IMPL_LONGLONG = 1 MICROPY_LONGINT_IMPL_MPZ = 2 |