aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorTim Heap <tim@timheap.me>2016-08-29 16:20:54 +1000
committerTim Heap <tim@timheap.me>2016-08-29 16:22:03 +1000
commitc7c6522000dc6a32f5933dc837b188b612744b3b (patch)
tree137c47a25b29f6ee65137686760ece7611ed5dee /setup.py
parentf455ee4f5881fa549c2dc864efc9848e170de6ef (diff)
downloadexternal_python_setuptools-c7c6522000dc6a32f5933dc837b188b612744b3b.tar.gz
external_python_setuptools-c7c6522000dc6a32f5933dc837b188b612744b3b.tar.bz2
external_python_setuptools-c7c6522000dc6a32f5933dc837b188b612744b3b.zip
Install py.test>=2.8,<3
The 3.x series is currently broken. Until py.test works again, 3.x should not be used by anything.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c37c9980..3b7ab31b 100755
--- a/setup.py
+++ b/setup.py
@@ -181,7 +181,7 @@ setup_params = dict(
tests_require=[
'setuptools[ssl]',
'pytest-flake8',
- 'pytest>=2.8,!=3.0.0',
+ 'pytest>=2.8,<3',
] + (['mock'] if sys.version_info[:2] < (3, 3) else []),
setup_requires=[
] + pytest_runner + wheel,