Skip to content

Commit 4aaa875

Browse files
authored
Avoid pytest 6.0.0 (#319)
Avoid incompatibility issues caused by pytest-dev/pytest#7559 We only avoid 6.0.0 because a fix will be included in 6.0.1
1 parent 4556076 commit 4aaa875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
package_data={"pytest_html": ["resources/*"]},
1313
entry_points={"pytest11": ["html = pytest_html.plugin"]},
1414
setup_requires=["setuptools_scm"],
15-
install_requires=["pytest>=5.0", "pytest-metadata"],
15+
install_requires=["pytest>=5.0,!=6.0.0", "pytest-metadata"],
1616
license="Mozilla Public License 2.0 (MPL 2.0)",
1717
keywords="py.test pytest html report",
1818
python_requires=">=3.6",

0 commit comments

Comments
 (0)