summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2021-07-26 14:07:45 +0100
committerGitHub <noreply@github.com>2021-07-26 14:07:45 +0100
commit61ab2db1fcbddbcee5ae667cff8c5301629b8c24 (patch)
tree14e0c49695a4d94870dda6f7126a4f6497523ced /tox.ini
parentce55fb2107a2d34166bb8d24f01802add446cf1f (diff)
downloadtox-git-61ab2db1fcbddbcee5ae667cff8c5301629b8c24.tar.gz
Bump formatters and deps to latest (#2116)
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini25
1 files changed, 15 insertions, 10 deletions
diff --git a/tox.ini b/tox.ini
index 781ca6e1..ca895d38 100644
--- a/tox.ini
+++ b/tox.ini
@@ -43,7 +43,7 @@ passenv =
basepython = python3.9
skip_install = true
deps =
- pre-commit>=2.2
+ pre-commit>=2.13
commands =
pre-commit run --all-files --show-diff-on-failure {tty:--color=always} {posargs}
python -c 'print(r"hint: run {envbindir}{/}pre-commit install to add checks as pre-commit hook")'
@@ -58,8 +58,8 @@ setenv =
skip_install = true
deps =
covdefaults>=1.2
- coverage>=5
- diff_cover>=4
+ coverage>=5.5
+ diff_cover>=6.2
parallel_show_output = true
commands =
coverage combine
@@ -78,7 +78,12 @@ description = run type check on code base
setenv =
{tty:MYPY_FORCE_COLOR = 1}
deps =
- mypy==0.812
+ mypy==0.910
+ types-cachetools
+ types-chardet
+ types-filelock
+ types-freezegun
+ types-toml
commands =
mypy src/tox
mypy tests
@@ -97,9 +102,9 @@ description = check that the long description is valid
basepython = python3.9
skip_install = true
deps =
- build[virtualenv]>=0.3
- check-wheel-contents>=0.2
- twine>=3
+ build[virtualenv]>=0.5
+ check-wheel-contents>=0.3.2
+ twine>=3.4
commands =
python -m build -o {envtmpdir} -s -w .
twine check {envtmpdir}{/}*
@@ -107,12 +112,12 @@ commands =
[testenv:release]
description = do a release, required posarg of the version number
-basepython = python3.8
+basepython = python3.9
skip_install = true
deps =
gitpython>=3.1
- packaging>=20.9
- towncrier>=19.9.0rc1
+ packaging>=21
+ towncrier>=21.3
commands =
python {toxinidir}/tasks/release.py --version {posargs}