summaryrefslogtreecommitdiffstatshomepage
path: root/tools/upip.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-05-01 00:03:45 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-05-01 00:03:45 +0300
commite81f46940e005e07502e3952f5b0feb23037235b (patch)
tree70bffa77967991ad11a07a9dcfc3eb3e4b30654f /tools/upip.py
parent473e85e2da847ade98d728a17c339f5c75a19369 (diff)
downloadmicropython-e81f46940e005e07502e3952f5b0feb23037235b.tar.gz
micropython-e81f46940e005e07502e3952f5b0feb23037235b.zip
tools/upip: Upgrade to 1.1.6, supports commented lines in requirements.txt.
Diffstat (limited to 'tools/upip.py')
-rw-r--r--tools/upip.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/upip.py b/tools/upip.py
index 0070fd6195..a156340b20 100644
--- a/tools/upip.py
+++ b/tools/upip.py
@@ -275,6 +275,8 @@ def main():
l = f.readline()
if not l:
break
+ if l[0] == "#":
+ continue
to_install.append(l.rstrip())
elif opt == "--debug":
debug = True