mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
update requirements
This commit is contained in:
parent
70a166275e
commit
5f66a42c17
2 changed files with 4 additions and 7 deletions
|
|
@ -300,7 +300,6 @@ git_hooks:
|
||||||
lint_isort:
|
lint_isort:
|
||||||
@printf "isort ...\n"
|
@printf "isort ...\n"
|
||||||
@$(DEV_ENV)/bin/isort \
|
@$(DEV_ENV)/bin/isort \
|
||||||
--recursive \
|
|
||||||
--check-only \
|
--check-only \
|
||||||
--line-width=$(MAX_LINE_LEN) \
|
--line-width=$(MAX_LINE_LEN) \
|
||||||
--project $(MODULE_NAME) \
|
--project $(MODULE_NAME) \
|
||||||
|
|
@ -425,7 +424,6 @@ test:
|
||||||
.PHONY: fmt_isort
|
.PHONY: fmt_isort
|
||||||
fmt_isort:
|
fmt_isort:
|
||||||
@$(DEV_ENV)/bin/isort \
|
@$(DEV_ENV)/bin/isort \
|
||||||
--recursive \
|
|
||||||
--line-width=$(MAX_LINE_LEN) \
|
--line-width=$(MAX_LINE_LEN) \
|
||||||
--project $(MODULE_NAME) \
|
--project $(MODULE_NAME) \
|
||||||
src/ test/;
|
src/ test/;
|
||||||
|
|
|
||||||
|
|
@ -20,16 +20,15 @@ flake8-comprehensions
|
||||||
flake8-junit-report
|
flake8-junit-report
|
||||||
flake8-2020
|
flake8-2020
|
||||||
pylint-ignore>=2020.1013
|
pylint-ignore>=2020.1013
|
||||||
mypy
|
mypy>=0.790
|
||||||
# pylint doesn't support isort>=5 for now
|
isort
|
||||||
# https://github.com/PyCQA/pylint/issues/3722
|
|
||||||
isort<5
|
|
||||||
|
|
||||||
# http://doc.pytest.org/en/latest/py27-py34-deprecation.html
|
# http://doc.pytest.org/en/latest/py27-py34-deprecation.html
|
||||||
# The pytest 4.6 series will be the last to support Python 2.7
|
# The pytest 4.6 series will be the last to support Python 2.7
|
||||||
# and 3.4, and is scheduled to be released by mid-2019.
|
# and 3.4, and is scheduled to be released by mid-2019.
|
||||||
# pytest 5.0 and onwards will support only Python 3.5+.
|
# pytest 5.0 and onwards will support only Python 3.5+.
|
||||||
pytest<5.0
|
pytest; python_version >= "3.5"
|
||||||
|
pytest<5.0; python_version < "3.5"
|
||||||
pytest-cov
|
pytest-cov
|
||||||
# https://github.com/pytest-dev/pytest-html/blob/master/CHANGES.rst
|
# https://github.com/pytest-dev/pytest-html/blob/master/CHANGES.rst
|
||||||
# pytest-html 2.0+ doesn't support python2.7
|
# pytest-html 2.0+ doesn't support python2.7
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue