Skip to content

Commit

Permalink
[bugfix] Fix Python 2 pytest-cov requirement
Browse files Browse the repository at this point in the history
Change-Id: I754f64cfe099d38900d13b2e3348317164c8e87e
  • Loading branch information
dvorapa committed Jun 19, 2020
1 parent 0382f4f commit b09251b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is a PIP 6+ requirements file for development dependencies
#
pytest < 4.1 ; python_version < '3'
pytest-cov < 2.6 ; python_version < '3'
pytest < 5 ; python_version < '3'
pytest-cov >= 2.6.1 ; python_version < '3'
pytest < 5 ; python_version == '3.4'
pytest-cov >= 2.6.1, < 2.9 ; python_version == '3.4'
pytest ; python_version >= '3.5'
Expand Down

0 comments on commit b09251b

Please sign in to comment.