Files
packages/utils/mpremote/test.sh
Alexandru Ardelean d0be8634f7 mpremote: bump to 1.27.0
Sync with MicroPython 1.27.0 release.
Drop patch: we have Python 3.14, importlib_metadata will be installed
for Python 3.7 or smaller.

New dep: platformdirs added.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-03-23 10:54:30 +02:00

12 lines
182 B
Bash

#!/bin/sh
[ "$1" = mpremote ] || exit 0
python3 - <<'EOF'
import mpremote
from mpremote import main
from mpremote.transport_serial import SerialTransport
print("mpremote OK")
EOF