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

View File

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