From 534ed41c3b90b1c3dde6b2d7b6219f75e379a53e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Apr 2025 16:04:21 +0000 Subject: [PATCH 1/2] Bump pylint from 3.2.6 to 3.3.6 Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.6 to 3.3.6. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.6...v3.3.6) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Pipfile | 2 +- Pipfile.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Pipfile b/Pipfile index 899df4a2..ecaf8e0a 100644 --- a/Pipfile +++ b/Pipfile @@ -30,7 +30,7 @@ pip = "==24.3.1" pipenv = "==2024.4.1" pydantic = "==2.8.2" pydoclint = "==0.5.6" -pylint = "==3.2.6" +pylint = "==3.3.6" pynacl = "==1.5.0" pytest = "==8.3.5" pytest-asyncio = "==0.26.0" diff --git a/Pipfile.lock b/Pipfile.lock index 8070aaf3..9807a882 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "413dd1bce7e0c822c3d17e76e2f6ce5712dce0e80f42735575e06df79f752cb6" + "sha256": "d89f6d63df79e22afbe4317fa28c05c701abea0b8314d7902c623e6ea4fde071" }, "pipfile-spec": 6, "requires": { @@ -137,11 +137,11 @@ }, "astroid": { "hashes": [ - "sha256:0e14202810b30da1b735827f78f5157be2bbd4a7a59b7707ca0bfc2fb4c0063a", - "sha256:413658a61eeca6202a59231abb473f932038fbcbf1666587f66d482083413a25" + "sha256:622cc8e3048684aa42c820d9d218978021c3c3d174fb03a9f0d615921744f550", + "sha256:d05bfd0acba96a7bd43e222828b7d9bc1e138aaeb0649707908d3702a9831248" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==3.2.4" + "markers": "python_full_version >= '3.9.0'", + "version": "==3.3.9" }, "asyncpg": { "hashes": [ @@ -1156,12 +1156,12 @@ }, "pylint": { "hashes": [ - "sha256:03c8e3baa1d9fb995b12c1dbe00aa6c4bcef210c2a2634374aedeb22fb4a8f8f", - "sha256:a5d01678349454806cff6d886fb072294f56a58c4761278c97fb557d708e1eb3" + "sha256:8b7c2d3e86ae3f94fb27703d521dd0b9b6b378775991f504d7c3a6275aa0a6a6", + "sha256:b634a041aac33706d56a0d217e6587228c66427e20ec21a019bc4cdee48c040a" ], "index": "pypi", - "markers": "python_full_version >= '3.8.0'", - "version": "==3.2.6" + "markers": "python_full_version >= '3.9.0'", + "version": "==3.3.6" }, "pynacl": { "hashes": [ From dfedb40db6482de697c0a6dcec5e3f6a11bdee81 Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Thu, 24 Apr 2025 12:43:46 -0400 Subject: [PATCH 2/2] ignore R0917 --- .pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc b/.pylintrc index 21ac7b77..1f097f33 100644 --- a/.pylintrc +++ b/.pylintrc @@ -75,6 +75,7 @@ disable=C0103, R0914, R0915, R0916, + R0917, W0201, W0231, W0406,