Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

pytest-cov does not work on pytest 4.1.0 yet #54

Merged
merged 6 commits into from
Jan 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ def get_metadata():

# Primary requirements
install_requires = [
'isodate>=0.6.0<0.7.0',
'six>=1.0.0<2.0.0',
'validators>=0.12.0<0.13.0'
'isodate >=0.6.0, <0.7.0',
'six >=1.0.0, <2.0.0',
'validators >=0.12.0, <0.13.0'
]
toml_requires = [
'toml>=0.10.0<0.11.0'
'toml >=0.10.0, <0.11.0'
]
yaml_requires = [
'ruamel.yaml>=0.15.0<0.16.0'
'ruamel.yaml >=0.15.0, <0.16.0'
]

# Development requirements
Expand All @@ -58,7 +58,7 @@ def get_metadata():
]
test_requires = [
'mock',
'pytest>=3.3.0',
'pytest >=3.3.0, <4.1.0',
'pytest-cov',
'pytest-doctest-import'
]
Expand Down