Skip to content

Commit 580d114

Browse files
committed
Pin pytest *before* 3.9.1 totally
Unfortunately they have released 3.9.2 before fixing issue 4181, which means we will have to re-pin a third time after they eventually release with a fix Change-Id: I9b6fab1b535f883a035f002264c41ad0166790ab Reference: pytest-dev/pytest#4181
1 parent ac358a0 commit 580d114

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def run_setup(with_cext):
139139
package_dir={'': 'lib'},
140140
license="MIT License",
141141
cmdclass=cmdclass,
142-
tests_require=['pytest>=2.5.2,!=3.9.1', 'mock', 'pytest-xdist'],
142+
tests_require=['pytest>=2.5.2,<3.9.1', 'mock', 'pytest-xdist'],
143143
long_description=readme,
144144
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
145145
classifiers=[

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ install_command=python -m pip install {env:TOX_PIP_OPTS:} {opts} {packages}
1515
usedevelop=
1616
cov: True
1717

18-
deps=pytest!=3.9.1
18+
deps=pytest<3.9.1
1919
pytest-xdist
2020
mock
2121
# needed only for correct profiling results

0 commit comments

Comments
 (0)