Skip to content

Commit 8aa65d7

Browse files
committed
Py2 and Py3 supported on tests
1 parent 4328908 commit 8aa65d7

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

requirements/lint.txt

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
-r pip.txt
2-
astroid==2.0.4
3-
pylint==2.1.1
4-
pylint-django==2.0.2
2+
# We need these special cases of Python < 3 because we run tests with
3+
# Python 2 still
4+
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'
510
pylint-celery==0.3
611
prospector==1.1.4
712
pyflakes==2.0.0

0 commit comments

Comments
 (0)