From c02d579f9e2a8e91f3c3ed4cf802c80381c26306 Mon Sep 17 00:00:00 2001 From: "Rodney, Tiara" Date: Sun, 23 Mar 2025 00:32:56 +0100 Subject: [PATCH] chore(build): add pylint dependency --- Pipfile | 1 + Pipfile.lock | 51 +++++++++++++++++++++++++++++++++++++++++++- requirements-dev.txt | 6 ++++++ 3 files changed, 57 insertions(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 26b01bc..cc7af5c 100644 --- a/Pipfile +++ b/Pipfile @@ -13,6 +13,7 @@ mypy = "~=1.15.0" autopep8 = "~=2.3.2" setuptools-scm = "~=8.2.0" pipenv = "~=2024.4.1" +pylint = "~=3.3.6" [requires] python_version = "3.11" diff --git a/Pipfile.lock b/Pipfile.lock index 51f6303..303f9aa 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "993ac222de569f8a8d09bd369675a8dbaaa6e6d5ecad45ed341a14945b95c4b3" + "sha256": "18c77cbe3d209b342ada3e15df1869310ab0d91d2d05af189e8a7d27b769e996" }, "pipfile-spec": 6, "requires": { @@ -347,6 +347,14 @@ } }, "develop": { + "astroid": { + "hashes": [ + "sha256:622cc8e3048684aa42c820d9d218978021c3c3d174fb03a9f0d615921744f550", + "sha256:d05bfd0acba96a7bd43e222828b7d9bc1e138aaeb0649707908d3702a9831248" + ], + "markers": "python_full_version >= '3.9.0'", + "version": "==3.3.9" + }, "autopep8": { "hashes": [ "sha256:89440a4f969197b69a995e4ce0661b031f455a9f776d2c5ba3dbd83466931758", @@ -388,6 +396,14 @@ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", "version": "==0.4.6" }, + "dill": { + "hashes": [ + "sha256:468dff3b89520b474c0397703366b7b95eebe6303f108adf9b19da1f702be87a", + "sha256:81aa267dddf68cbfe8029c42ca9ec6a4ab3b22371d1c450abc54422577b4512c" + ], + "markers": "python_version >= '3.8'", + "version": "==0.3.9" + }, "distlib": { "hashes": [ "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", @@ -403,6 +419,22 @@ "markers": "python_version >= '3.9'", "version": "==3.18.0" }, + "isort": { + "hashes": [ + "sha256:1cb5df28dfbc742e490c5e41bad6da41b805b0a8be7bc93cd0fb2a8a890ac450", + "sha256:2dc5d7f65c9678d94c88dfc29161a320eec67328bc97aad576874cb4be1e9615" + ], + "markers": "python_full_version >= '3.9.0'", + "version": "==6.0.1" + }, + "mccabe": { + "hashes": [ + "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325", + "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e" + ], + "markers": "python_version >= '3.6'", + "version": "==0.7.0" + }, "mypy": { "hashes": [ "sha256:1124a18bc11a6a62887e3e137f37f53fbae476dc36c185d549d4f837a2a6a14e", @@ -491,6 +523,15 @@ "markers": "python_version >= '3.8'", "version": "==2.12.1" }, + "pylint": { + "hashes": [ + "sha256:8b7c2d3e86ae3f94fb27703d521dd0b9b6b378775991f504d7c3a6275aa0a6a6", + "sha256:b634a041aac33706d56a0d217e6587228c66427e20ec21a019bc4cdee48c040a" + ], + "index": "pypi", + "markers": "python_full_version >= '3.9.0'", + "version": "==3.3.6" + }, "pyproject-api": { "hashes": [ "sha256:326df9d68dea22d9d98b5243c46e3ca3161b07a1b9b18e213d1e24fd0e605766", @@ -516,6 +557,14 @@ "markers": "python_version >= '3.8'", "version": "==8.2.0" }, + "tomlkit": { + "hashes": [ + "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde", + "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79" + ], + "markers": "python_version >= '3.8'", + "version": "==0.13.2" + }, "tox": { "hashes": [ "sha256:92e8290e76ad4e15748860a205865696409a2d014eedeb796a34a0f3b5e7336e", diff --git a/requirements-dev.txt b/requirements-dev.txt index 2453898..61daccc 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,11 +1,15 @@ -i https://pypi.org/simple +astroid==3.3.9; python_full_version >= '3.9.0' autopep8==2.3.2; python_version >= '3.9' cachetools==5.5.2; python_version >= '3.7' certifi==2025.1.31; python_version >= '3.6' chardet==5.2.0; python_version >= '3.7' colorama==0.4.6; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6' +dill==0.3.9; python_version >= '3.8' distlib==0.3.9 filelock==3.18.0; python_version >= '3.9' +isort==6.0.1; python_full_version >= '3.9.0' +mccabe==0.7.0; python_version >= '3.6' mypy==1.15.0; python_version >= '3.9' mypy-extensions==1.0.0; python_version >= '3.5' packaging==24.2; python_version >= '3.8' @@ -13,9 +17,11 @@ pipenv==2024.4.1; python_version >= '3.8' platformdirs==4.3.7; python_version >= '3.9' pluggy==1.5.0; python_version >= '3.8' pycodestyle==2.12.1; python_version >= '3.8' +pylint==3.3.6; python_full_version >= '3.9.0' pyproject-api==1.9.0; python_version >= '3.9' setuptools==77.0.3; python_version >= '3.9' setuptools-scm==8.2.0; python_version >= '3.8' +tomlkit==0.13.2; python_version >= '3.8' tox==4.24.2; python_version >= '3.8' typing-extensions==4.12.2; python_version >= '3.8' virtualenv==20.29.3; python_version >= '3.8'