1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Allow greater versions for both pep8, flake8, pyflakes and mccabe
Also support flake8 >= 2.2.2
Author: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2014-03-22
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,9 +3,9 @@
# process, which may cause wedges in the gate later.
pbr>=1.6 # Apache-2.0
-pep8==1.5.7 # MIT
-pyflakes==0.8.1 # MIT
+pep8>=1.5.7 # MIT
+pyflakes>=0.8.1 # MIT
flake8<2.6.0,>=2.5.4 # MIT
-mccabe==0.2.1 # MIT License
+mccabe>=0.2.1 # MIT License
six>=1.9.0 # MIT
|