mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
d0be8634f7
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>
12 lines
182 B
Bash
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
|