pin flake, isort and mypy versions

This commit is contained in:
Mathieu Dupuy 2024-07-25 14:00:22 +02:00
parent c499c313c2
commit b47a253ccb
No known key found for this signature in database
GPG key ID: 08C1D4F32506B23A

View file

@ -14,17 +14,17 @@ deps =
commands = pytest -r s --cov --cov-report=term --cov-report=xml .
[testenv:flake8]
deps = flake8
deps = flake8==7.1.0
commands = flake8 .
skip_install = True
[testenv:isort]
deps = isort
deps = isort==5.13.2
commands = isort --check --diff .
skip_install = True
[testenv:mypy]
deps = mypy
deps = mypy==1.11.0
commands = mypy .
skip_install = True