diff --git a/pyproject.toml b/pyproject.toml index be33cee5..e629375b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,7 @@ nbmake = "^1.5.3" [tool.poetry.group.lint] optional = true [tool.poetry.group.lint.dependencies] -pylint = "^3.1.0" +pylint = "3.2.2" black = "^24.3.0" flake8 = {version = "^7.0.0", python = "^3.9"} pylint-exit = "^1.2.0" diff --git a/tox.ini b/tox.ini index 19707160..b9014a39 100644 --- a/tox.ini +++ b/tox.ini @@ -42,10 +42,10 @@ commands = description = run linters basepython = python3.11 commands_pre = - poetry install --with lint + poetry --verbose install --with lint commands = -# poetry run pylint --recursive=y --exit-zero --persistent=n hypernetx -# poetry run flake8 hypernetx --exit-zero + poetry run pylint --recursive=y --exit-zero --persistent=n hypernetx + poetry run flake8 hypernetx --exit-zero poetry run pre-commit install poetry run pre-commit run --all-files