From ab3738ddd85963a614648ef3a2300a0a45208990 Mon Sep 17 00:00:00 2001 From: jab Date: Wed, 5 Jul 2017 16:22:04 +0000 Subject: [PATCH] update to latest pytest (3.1.3), sphinx, and pre-commit --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index c01c6c55..95f927b3 100644 --- a/setup.py +++ b/setup.py @@ -24,10 +24,10 @@ def from_file(filename, fallback): 'hypothesis-pytest==0.19.0', 'py==1.4.34', 'pydocstyle==2.0.0', - 'pytest==3.1.2', + 'pytest==3.1.3', 'pytest-benchmark==3.1.0a2', 'pytest-cov==2.5.1', - 'Sphinx==1.6.2', + 'Sphinx==1.6.3', 'sortedcollections==0.4.2', 'sortedcontainers==1.5.5', ] @@ -64,6 +64,6 @@ def from_file(filename, fallback): tests_require=tests_require, extras_require=dict( test=tests_require, - dev=tests_require + ['pre-commit==0.14.3', 'tox==2.7.0'], + dev=tests_require + ['pre-commit==0.15.0', 'tox==2.7.0'], ), )