summaryrefslogtreecommitdiffstats
path: root/test-requirements.txt
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2016-12-02 00:41:07 +0100
committerJoris Roovers <jroovers@cisco.com>2016-12-02 00:41:07 +0100
commitd68fe1163203c0408ce72deec325c036ab773c69 (patch)
treed0cb1a5e2ce56b2b1aff385fc8a9586173723ead /test-requirements.txt
parent9f6001a186f4bebc6edc0273a6bc5974913f5203 (diff)
Dependency version bumps
Updated all dependencies to the latest version. This brings us to back to 2016 :-) The only dependency not getting an update is 'sh' because the 0.12.x release series seems to be very buggy (performance issues, regressions, etc). This commit does contain a guard for checking '_ok_code' during sh invocation as that was an issue with 1.12.x (submitted https://github.com/amoffat/sh/issues/343). Might as well patch it already if we ever do go to sh==1.12.x.
Diffstat (limited to 'test-requirements.txt')
-rw-r--r--test-requirements.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/test-requirements.txt b/test-requirements.txt
index 923580d..b0a80c3 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,10 +1,13 @@
discover==0.4.0 # support for python 2.6
unittest2==1.1.0 # support for python 2.6
-flake8==2.4.0
+flake8==2.6.2; python_version < '2.7'
+flake8==3.2.1; python_version >= '2.7'
coverage==3.7.1
-python-coveralls==2.5.0
-radon==1.2.1
-mock==1.3.0
-pytest==2.9.1
-pylint==1.5.5
+python-coveralls==2.9.0
+radon==1.4.2
+mock==2.0.0
+pytest==3.0.4
+pylint<1.4; python_version < '2.7'
+astroid<=1.3.2; python_version < '2.7' # astroid is a pylint dependency
+pylint==1.6.4; python_version >= '2.7'
-e . \ No newline at end of file