Skip to content

Commit 3bb8663

Browse files
committed
Merge branch 'master' of github.com:micropython/micropython
2 parents c75427b + bd6f3d3 commit 3bb8663

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

tests/basics/set_union.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
print({1}.union({2}))
1+
print(sorted({1}.union({2})))

tools/pip-micropython

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
# ports (if PIP_MICROPY_DEST environment var is set).
77
#
88

9+
if [ "$1" != "install" ]; then
10+
echo "Only install command is supported currently"
11+
exit 1
12+
fi
13+
shift
14+
915
if [ -n "$PIP_MICROPY_DEST" ]; then
1016
dest="$PIP_MICROPY_DEST"
1117
echo "Destination snapshot directory: $dest"

0 commit comments

Comments
 (0)