diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-13 21:39:57 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-13 21:39:57 +0300 |
commit | dd0e24f4b077378635fd71267936fa39a2228cb5 (patch) | |
tree | b1a9ad2b818dedd0e02d3478035f7638b0f298f6 | |
parent | 32eb4b905538c71ca5acee5f92e12c1aed992f4c (diff) | |
download | micropython-dd0e24f4b077378635fd71267936fa39a2228cb5.tar.gz micropython-dd0e24f4b077378635fd71267936fa39a2228cb5.zip |
pip-micropython: Add deprecation notice, but still leave for reference.
-rwxr-xr-x | tools/pip-micropython | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/pip-micropython b/tools/pip-micropython index 0db699f0c0..c7b23f1b6d 100755 --- a/tools/pip-micropython +++ b/tools/pip-micropython @@ -5,6 +5,12 @@ # complete library snapshot to be deployed on a device for baremetal # ports (if PIP_MICROPY_DEST environment var is set). # +# Note: this tool is deprecated in favor of "upip" native MicroPython +# package manager, which is bundled with MicroPython unix binary +# as a frozen module and can be run as "micropython -u pip" or installed +# from PyPI package "micropython-upip". This utility is left for +# reference, regression testing, debugging, etc. +# if [ "$1" != "install" ]; then echo "Only install command is supported currently" |