From 241ce0ef7085669b4172aad7e99b3f3861bd55e6 Mon Sep 17 00:00:00 2001 From: Kirill Markin Date: Sun, 25 May 2025 10:53:11 +0300 Subject: [PATCH] Fix CI: Enable dev dependencies for pylint - Uncomment [project.optional-dependencies] dev section - Remove duplicate Poetry dev dependencies - Fix pylint command not found error in GitHub Actions - Resolves CI failure in PR #28 --- pyproject.toml | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2234829..19e9e99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,16 +33,16 @@ Repository = "https://github.com/kirill-markin/repo-to-text" repo-to-text = "repo_to_text.main:main" flatten = "repo_to_text.main:main" -#[project.optional-dependencies] -#dev = [ -# "pytest>=8.2.2", -# "black", -# "mypy", -# "isort", -# "build", -# "twine", -# "pylint", -#] +[project.optional-dependencies] +dev = [ + "pytest>=8.2.2", + "black", + "mypy", + "isort", + "build", + "twine", + "pylint", +] [tool.pylint] disable = [ @@ -50,12 +50,5 @@ disable = [ ] -[tool.poetry.group.dev.dependencies] -pytest = "^8.3.5" -black = "^25.1.0" -mypy = "^1.15.0" -isort = "^6.0.1" -build = "^1.2.2.post1" -twine = "^6.1.0" -pylint = "^3.3.7" +