summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-01-04 20:39:46 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-01-04 21:57:42 +0100
commit1a782ea0c0780506ab0103baa256a75fee0b313b (patch)
tree120313230050051cc34bf8da257ede111f642d91
parente4524b2db4ab82b40dc898d85bf71c4d281ccdb6 (diff)
downloadqutebrowser-1a782ea0c0780506ab0103baa256a75fee0b313b.tar.gz
qutebrowser-1a782ea0c0780506ab0103baa256a75fee0b313b.zip
recompile_requirements: Ignore qutebrowser requirement
-rw-r--r--scripts/dev/recompile_requirements.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/dev/recompile_requirements.py b/scripts/dev/recompile_requirements.py
index c2bb8ee22..9b181f986 100644
--- a/scripts/dev/recompile_requirements.py
+++ b/scripts/dev/recompile_requirements.py
@@ -144,6 +144,8 @@ def main():
f.write("# This file is automatically generated by "
"scripts/dev/recompile_requirements.py\n\n")
for line in reqs.splitlines():
+ if line.startswith('qutebrowser=='):
+ continue
f.write(convert_line(line, comments) + '\n')