diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-01 17:40:19 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-01 17:40:19 -0400 |
commit | cf469bf239cc6c0d4ebb766c5e2b6c6098e2b28b (patch) | |
tree | ca3adaf4df458c0a8b59b82638dc1ee54c6c8468 /setup.py | |
parent | fedef1341c3b5610e75fcd1fbdefa383cafe7565 (diff) | |
download | python-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-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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, |