aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Freeland2015-03-24 15:32:31 -0400
committerAndy Freeland2015-03-24 15:32:31 -0400
commit2a6f25c5f9d45cfe04e93e0421ff8982e29986f6 (patch)
tree54d86b4212027658c0b21a2a399d26e822d7dbcb
parentf7fc754bc916ba41288328cc3d0434225739a4f0 (diff)
downloaddjango-rest-framework-2a6f25c5f9d45cfe04e93e0421ff8982e29986f6.tar.bz2
Pin flake8 2.4.0 and pep8 1.5.7
-rw-r--r--requirements-test.txt3
-rw-r--r--tox.ini3
2 files changed, 4 insertions, 2 deletions
diff --git a/requirements-test.txt b/requirements-test.txt
index 411daeba..2880f5a9 100644
--- a/requirements-test.txt
+++ b/requirements-test.txt
@@ -2,7 +2,8 @@
pytest-django==2.6
pytest==2.5.2
pytest-cov==1.6
-flake8==2.2.2
+pep8==1.5.7
+flake8==2.4.0
# Optional packages
markdown>=2.1.0
diff --git a/tox.ini b/tox.ini
index b3f53cce..0e17ca51 100644
--- a/tox.ini
+++ b/tox.ini
@@ -15,7 +15,8 @@ setenv =
[testenv:flake8]
basepython = python2.7
deps = pytest==2.5.2
- flake8==2.2.2
+ pep8==1.5.7
+ flake8==2.4.0
commands = ./runtests.py --lintonly
[testenv:py3.4-django1.7]