From e43f5130711c06611810f0e19b9ac56c73cd732c Mon Sep 17 00:00:00 2001 From: "ryan.danehy@pnnl.gov" Date: Wed, 7 Aug 2024 08:37:35 -0700 Subject: [PATCH] remove flake --- pyproject.toml | 2 +- tox.ini | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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