guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: python-dill: Update to 0.3.6.


From: guix-commits
Subject: 03/04: gnu: python-dill: Update to 0.3.6.
Date: Wed, 26 Apr 2023 15:33:43 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 95fdd862d0638ab176287d62b91e5c7fd30bc4b7
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Apr 26 21:28:38 2023 +0200

    gnu: python-dill: Update to 0.3.6.
    
    * gnu/packages/python-xyz.scm (python-dill): Update to 0.3.6.
    [build-system]: Use pyproject-build-system.
    [arguments]: Run tests conditionally; drop trailing #T from build phase.
---
 gnu/packages/python-xyz.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3f57880ce2..badbe34f80 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23954,22 +23954,22 @@ object-oriented library such as @code{scikit-learn}.")
 (define-public python-dill
   (package
     (name "python-dill")
-    (version "0.3.5.1")
+    (version "0.3.6")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "dill" version))
        (sha256
-        (base32 "11lc40x37cx2i8qqbc5qklifm65dyjl6prrqsycybvpixzrl2pnp"))))
-    (build-system python-build-system)
+        (base32 "0wr37zwyiprrv29jcc1hl5cla72faiwfs0mhvbxxhmkqd3rmbnz5"))))
+    (build-system pyproject-build-system)
     (arguments
      `(#:phases
        (modify-phases %standard-phases
          (replace 'check
-           (lambda _
-             (with-directory-excursion "/tmp"
-               (invoke "nosetests" "-v"))
-             #t)))))
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (with-directory-excursion "/tmp"
+                 (invoke "nosetests" "-v"))))))))
     (native-inputs
      (list python-nose))
     (home-page "https://pypi.org/project/dill/";)



reply via email to

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