unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41580] [PATCH] gnu: Update python-pylint to 2.5.2
@ 2020-05-28 18:01 Ryan Prior via Guix-patches via
  2020-05-30 12:31 ` bug#41580: " Marius Bakke
  0 siblings, 1 reply; 3+ messages in thread
From: Ryan Prior via Guix-patches via @ 2020-05-28 18:01 UTC (permalink / raw)
  To: 41580

* 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






^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#41580: [PATCH] gnu: Update python-pylint to 2.5.2
  2020-05-28 18:01 [bug#41580] [PATCH] gnu: Update python-pylint to 2.5.2 Ryan Prior via Guix-patches via
@ 2020-05-30 12:31 ` Marius Bakke
  2020-05-30 21:34   ` [bug#41580] " Marius Bakke
  0 siblings, 1 reply; 3+ messages in thread
From: Marius Bakke @ 2020-05-30 12:31 UTC (permalink / raw)
  To: Ryan Prior, 41580-done


[-- Attachment #1.1: Type: text/plain, Size: 211 bytes --]

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:


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: diff --]
[-- Type: text/x-patch, Size: 1016 bytes --]

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 #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#41580] [PATCH] gnu: Update python-pylint to 2.5.2
  2020-05-30 12:31 ` bug#41580: " Marius Bakke
@ 2020-05-30 21:34   ` Marius Bakke
  0 siblings, 0 replies; 3+ messages in thread
From: Marius Bakke @ 2020-05-30 21:34 UTC (permalink / raw)
  To: Ryan Prior, 41580-done

[-- Attachment #1: Type: text/plain, Size: 555 bytes --]

Marius Bakke <marius@gnu.org> writes:

> 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:

I had to revert this patch because it broke the Totem test suite:

  https://issues.guix.gnu.org/issue/41620

Can you take a look?

In the future, it's good if you run 'guix refresh -l package' and try to
build some of the important-looking dependents before submitting, GNOME
in this case.  :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-05-30 21:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-28 18:01 [bug#41580] [PATCH] gnu: Update python-pylint to 2.5.2 Ryan Prior via Guix-patches via
2020-05-30 12:31 ` bug#41580: " Marius Bakke
2020-05-30 21:34   ` [bug#41580] " Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).