From e81f46940e005e07502e3952f5b0feb23037235b Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 1 May 2017 00:03:45 +0300 Subject: tools/upip: Upgrade to 1.1.6, supports commented lines in requirements.txt. --- tools/upip.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools/upip.py') 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 -- cgit v1.2.3