Skip to content

Commit

Permalink
Avoid using toml as extra (#472)
Browse files Browse the repository at this point in the history
Avoid pip-compile bug which forces it to produce invalid constraints
files. Installing toml as a direct dependency is enough to avoid
this bug.

Related: jazzband/pip-tools#1300
  • Loading branch information
ssbarnea committed Jun 1, 2021
1 parent edc60bb commit 34edfa1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -124,7 +124,8 @@ def run(self):
],
install_requires=[
'pytest>=4.6',
'coverage[toml]>=5.2.1'
'coverage>=5.2.1',
'toml'
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
extras_require={
Expand Down

0 comments on commit 34edfa1

Please sign in to comment.