We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4328908 commit 8aa65d7Copy full SHA for 8aa65d7
requirements/lint.txt
@@ -1,7 +1,12 @@
1
-r pip.txt
2
-astroid==2.0.4
3
-pylint==2.1.1
4
-pylint-django==2.0.2
+# We need these special cases of Python < 3 because we run tests with
+# Python 2 still
+astroid==2.0.4; python_version > '3'
5
+astroid==1.6.4; python_version < '3'
6
+pylint==2.1.1; python_version > '3'
7
+pylint<2; python_version < '3'
8
+pylint-django==2.0.2; python_version > '3'
9
+pylint-django==0.11.1; python_version < '3'
10
pylint-celery==0.3
11
prospector==1.1.4
12
pyflakes==2.0.0
0 commit comments