Skip to content

Commit

Permalink
Avoid pytest 6.0.0 (#319)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ssbarnea committed Jul 30, 2020
1 parent 4556076 commit 4aaa875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@
package_data={"pytest_html": ["resources/*"]},
entry_points={"pytest11": ["html = pytest_html.plugin"]},
setup_requires=["setuptools_scm"],
install_requires=["pytest>=5.0", "pytest-metadata"],
install_requires=["pytest>=5.0,!=6.0.0", "pytest-metadata"],
license="Mozilla Public License 2.0 (MPL 2.0)",
keywords="py.test pytest html report",
python_requires=">=3.6",
Expand Down

0 comments on commit 4aaa875

Please sign in to comment.