Switch logger setup to mondrian (deps).

This commit is contained in:
Romain Dorgueil
2017-11-01 13:12:19 +01:00
parent 40a745fe08
commit 69bb3cb091
2 changed files with 7 additions and 56 deletions

View File

@ -40,16 +40,15 @@ python.setup(
)
python.add_requirements(
'colorama >=0.3,<0.4',
'fs >=2.0,<2.1',
'jinja2 >=2.9,<2.10',
'mondrian >=0.2,<0.3',
'packaging >=16,<17',
'psutil >=5.4,<6.0',
'python-dotenv >=0.7,<0.8',
'requests >=2.0,<3.0',
'stevedore >=1.27,<1.28',
dev=[
'cookiecutter >=1.5,<1.6',
'pytest-sugar >=0.8,<0.9',
'pytest-timeout >=1,<2',
],
@ -65,4 +64,10 @@ python.add_requirements(
],
)
# Following requirements are not enforced, because some dependencies enforce them so we don't want to break
# the packaging in case it changes in dep.
python.add_requirements(
'colorama >=0.3',
)
# vim: ft=python: