emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#41580: closed ([PATCH] gnu: Update python-pylint to 2.5.2)


From: GNU bug Tracking System
Subject: bug#41580: closed ([PATCH] gnu: Update python-pylint to 2.5.2)
Date: Sat, 30 May 2020 12:32:02 +0000

Your message dated Sat, 30 May 2020 14:31:09 +0200
with message-id <871rn138qa.fsf@gnu.org>
and subject line Re: [bug#41580] [PATCH] gnu: Update python-pylint to 2.5.2
has caused the debbugs.gnu.org bug report #41580,
regarding [PATCH] gnu: Update python-pylint to 2.5.2
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
41580: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41580
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Update python-pylint to 2.5.2 Date: Thu, 28 May 2020 18:01:34 +0000
* gnu/packages/check.scm (python-pylint): Updated version to 2.5.2
---
 gnu/packages/check.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 7d7fd189bc..de4a978d97 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1887,12 +1887,10 @@ unit tests and failing them if the unit test module 
does not exercise all
 statements in the module it tests.")
     (license license:gpl3+)))
 
-;; Further releases, up to 2.4.3, have failing unit tests. See:
-;; https://github.com/PyCQA/pylint/issues/3198.
 (define-public python-pylint
   (package
     (name "python-pylint")
-    (version "2.3.1")
+    (version "2.5.2")
     (source
      (origin
        (method git-fetch)
@@ -1902,8 +1900,11 @@ statements in the module it tests.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "17vvzbcqmkhr4icq5p3737nbiiyj1y3g1pa08n9mb1bsnvxmqq0z"))))
+         "150x679mrlgm1s4ym7irf9mnsjilqyaakss4spc4pbrzkl11agnh"))))
     (build-system python-build-system)
+    ;; Further releases, up to 2.4.3, have failing unit tests. See:
+    ;; https://github.com/PyCQA/pylint/issues/3198.
+    (arguments '(#:tests? #f))
     (native-inputs
      `(("python-pytest" ,python-pytest)
        ("python-pytest-runner" ,python-pytest-runner)
-- 
2.26.2





--- End Message ---
--- Begin Message --- Subject: Re: [bug#41580] [PATCH] gnu: Update python-pylint to 2.5.2 Date: Sat, 30 May 2020 14:31:09 +0200
Ryan Prior via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/check.scm (python-pylint): Updated version to 2.5.2

Thanks!  I fixed the commit message and applied with the following
changes:

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index de4a978d97..8d99e67514 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1902,7 +1902,7 @@ statements in the module it tests.")
         (base32
          "150x679mrlgm1s4ym7irf9mnsjilqyaakss4spc4pbrzkl11agnh"))))
     (build-system python-build-system)
-    ;; Further releases, up to 2.4.3, have failing unit tests. See:
+    ;; FIXME: Tests are failing since version 2.4.3, see:
     ;; https://github.com/PyCQA/pylint/issues/3198.
     (arguments '(#:tests? #f))
     (native-inputs
@@ -1946,7 +1946,7 @@ possible to write plugins to add your own checks.")
                  (base32
                   "02a89d8a47s7nfiv1ady3j0sg2sbyja3np145brarfp5x9qxz9x2"))))
              (arguments
-              `(,@(package-arguments pylint)
+              `(,@(strip-keyword-arguments '(#:tests?) (package-arguments 
pylint))
                 #:phases
                 (modify-phases %standard-phases
                   (replace 'check

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]