guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d321ed03351f9bec7fa6db86644b2ae054aa3273
Author: Thiago Jung Bauermann <[email protected]>
AuthorDate: Wed Sep 2 01:24:53 2026 -0300

    gnu: python-pylint: Update to 4.0.8.
    
    Also, update origin and home-page URLs since
    https://github.com/PyCQA/pylint now redirects to
    https://github.com/pylint-dev/pylint.
    
    * gnu/packages/check.scm (python-pylint): Update to 4.0.8.
    [source]: Update URL.
    [home-page]: Update URL.
    
    Relates-to: guix/guix!10980
    Reviewed-by: Hugo Buddelmeijer <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/check.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index f75cc7c03d..559713e8aa 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2901,16 +2901,16 @@ each of the environments.")
 (define-public python-pylint
   (package
     (name "python-pylint")
-    (version "4.0.5")
+    (version "4.0.8")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-              (url "https://github.com/PyCQA/pylint";)
+              (url "https://github.com/pylint-dev/pylint";)
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0d66brpy06l5hhzx2z9im771wjxqn8lha6qxpw0rwkvv2kfigjj4"))))
+        (base32 "0rp9dmfyq7ai5y5mlyi5vmhq4zrc9zbpivywy1pxwwrp4pkchavc"))))
     (build-system pyproject-build-system)
     (arguments
      (list
@@ -2945,7 +2945,7 @@ each of the environments.")
            python-mccabe
            python-platformdirs
            python-tomlkit))
-    (home-page "https://github.com/PyCQA/pylint";)
+    (home-page "https://github.com/pylint-dev/pylint";)
     (synopsis "Advanced Python code static checker")
     (description "Pylint is a Python source code analyzer which looks
 for programming errors, helps enforcing a coding standard and sniffs

Reply via email to