summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-10-01 17:40:19 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-10-01 17:40:19 -0400
commitcf469bf239cc6c0d4ebb766c5e2b6c6098e2b28b (patch)
treeca3adaf4df458c0a8b59b82638dc1ee54c6c8468 /setup.py
parentfedef1341c3b5610e75fcd1fbdefa383cafe7565 (diff)
downloadpython-setuptools-git-cf469bf239cc6c0d4ebb766c5e2b6c6098e2b28b.tar.gz
Pin to Pytest 3.0.2 as it appears 3.0.3 re-introduces pytest-dev/pytest#1888.v28.1.0
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6ef0226a..ff6809ed 100755
--- a/setup.py
+++ b/setup.py
@@ -181,7 +181,8 @@ setup_params = dict(
tests_require=[
'setuptools[ssl]',
'pytest-flake8',
- 'pytest>=3.0.2',
+ # pin pytest to 3.0.2 for pytest-dev/pytest#1888
+ 'pytest==3.0.2',
] + (['mock'] if sys.version_info[:2] < (3, 3) else []),
setup_requires=[
] + pytest_runner + wheel,