Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Remove the coverage dependency constraint.
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Mar 23, 2016
1 parent c8e29f0 commit e1870d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changes
2.0.4 (unreleased)
------------------

- Nothing changed yet.
- Remove the ``coverage`` dependency constraint.


2.0.3 (2015-11-09)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def read(*rnames):
),
install_requires=[
'setuptools',
'coverage < 4.0',
'coverage',
],
entry_points="""
[console_scripts]
Expand Down

1 comment on commit e1870d5

@tseaver
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC, coverage 4.0 introduced compatibility issues which prompted adding that constraint.

Also, when @agroszer added the constraint in 2755106#diff-2eeaed663bd0d25b7e608891384b7298, he also limited it in buildout.cfg: at a minimum, this PR should update that file as well.

Please sign in to comment.