1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
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: 2015-09-18
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,9 +3,9 @@
# process, which may cause wedges in the gate later.
pbr>=0.11,<2.0
-pep8==1.5.7
-pyflakes==0.8.1
-flake8==2.2.4
-mccabe==0.2.1 # MIT License
+pep8>=1.5.7
+pyflakes>=0.8.1
+flake8>=2.2.2
+mccabe>=0.2.1 # MIT License
six>=1.7.0
|