Skip to content

Commit 3064c41

Browse files
committed
drop restriction on max MicroPython version
The MPY ABI version doesn't change on every release so to avoid needing to release a new version of mpy-cross-multi for every MicroPython release, we will just drop the restriction on the maximum version.
1 parent cdbedc5 commit 3064c41

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

mpy_cross_multi/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ def mp_version_to_mpy_abi_version(mp_ver: Version) -> str:
1717
TypeError: If the input is not a valid version string
1818
NotImplementedError: If the MicroPython version is not supported
1919
"""
20-
if mp_ver.match(">=1.24.0"):
21-
raise NotImplementedError("MicroPython version must be <1.24.0")
22-
2320
if mp_ver.match(">=1.23.0"):
2421
return "6.3"
2522

0 commit comments

Comments
 (0)