Skip to content

Commit

Permalink
Fix flake8/pycodestyle dependency error
Browse files Browse the repository at this point in the history
  • Loading branch information
bonjourmauko committed Jul 31, 2022
1 parent e18f23b commit 7e4538a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,26 @@
]

api_requirements = [
'markupsafe == 2.0.1', # While flask revision < 2
'flask == 1.1.4',
'markupsafe >= 2.0.1, < 2.1.0',
'flask >= 1.1.4, < 2.0.0',
'flask-cors == 3.0.10',
'gunicorn >= 20.0.0, < 21.0.0',
'werkzeug >= 1.0.0, < 2.0.0',
'werkzeug >= 1.0.1, < 2.0.0',
]

dev_requirements = [
'autopep8 >= 1.4.0, < 1.6.0',
'coverage == 6.0.2',
'darglint == 1.8.0',
'flake8 >= 4.0.0, < 4.1.0',
'flake8 >= 3.9.0, < 4.0.0',
'flake8-bugbear >= 19.3.0, < 20.0.0',
'flake8-docstrings == 1.6.0',
'flake8-print >= 3.1.0, < 4.0.0',
'flake8-rst-docstrings == 0.2.3',
'mypy == 0.910',
'openfisca-country-template >= 3.10.0, < 4.0.0',
'openfisca-extension-template >= 1.2.0rc0, < 2.0.0',
'pycodestyle >= 2.7.0, < 2.8.0',
'pylint == 2.10.2',
] + api_requirements

Expand Down

0 comments on commit 7e4538a

Please sign in to comment.