Skip to content

Commit 34edfa1

Browse files
authored
Avoid using toml as extra (#472)
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
1 parent edc60bb commit 34edfa1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ def run(self):
124124
],
125125
install_requires=[
126126
'pytest>=4.6',
127-
'coverage[toml]>=5.2.1'
127+
'coverage>=5.2.1',
128+
'toml'
128129
],
129130
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
130131
extras_require={

0 commit comments

Comments
 (0)