mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 10:51:55 +00:00
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
|