Skip to content

Commit b6bafc4

Browse files
authored
install_requires: do not allow pytest 4.2.0 (#697)
Ref: pytest-dev/pytest#4704
1 parent fe6ddb8 commit b6bafc4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def read(fname):
3131
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
3232
setup_requires=['setuptools_scm>=1.11.1'],
3333
install_requires=[
34-
'pytest>=3.6',
34+
'pytest>=3.6,!=4.2.0',
3535
'pathlib2;python_version<"3.4"',
3636
],
3737
extras_require={
@@ -40,7 +40,6 @@ def read(fname):
4040
'sphinx_rtd_theme',
4141
],
4242
'testing': [
43-
'pytest>=3.6',
4443
'Django',
4544
'django-configurations>=2.0',
4645
'pytest-xdist>=1.15',

0 commit comments

Comments
 (0)