guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: python-upsetplot: Update to 0.9.0.


From: guix-commits
Subject: branch master updated: gnu: python-upsetplot: Update to 0.9.0.
Date: Thu, 28 Mar 2024 08:38:09 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d616e85ac8 gnu: python-upsetplot: Update to 0.9.0.
d616e85ac8 is described below

commit d616e85ac8a380d5126da3184f7037c20866c884
Author: nafkhamdc <navid.afkhami@mdc-berlin.de>
AuthorDate: Thu Mar 28 12:29:59 2024 +0000

    gnu: python-upsetplot: Update to 0.9.0.
    
    * gnu/packages/python-science.scm (python-upsetplot): Update to 0.9.0.
    [source]: Remove obsolete snippet.
    [arguments]: Remove custom check phase.
    [build-system]: Use pyproject-build-system.
    
    Change-Id: I68bcd6840577a12594e491e9fd5e114f9261f6c7
    Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
---
 gnu/packages/python-science.scm | 22 +++-------------------
 1 file changed, 3 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index b6a116f16b..b00dd9455d 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1435,31 +1435,15 @@ for handling arrays and scalars with 
units,respectively")
 (define-public python-upsetplot
   (package
     (name "python-upsetplot")
-    (version "0.6.0")
+    (version "0.9.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "UpSetPlot" version))
        (sha256
         (base32
-         "11zrykwnb00w5spx4mnsnm0f9gwrphdczainpmwkyyi50vipaa2l"))
-       (modules '((guix build utils)))
-       (snippet
-        ;; Patch for compatibility with newer setuptools:
-        ;; https://github.com/jnothman/UpSetPlot/pull/178
-        '(substitute* "upsetplot/data.py"
-           (("import distutils")
-            "from distutils.version import LooseVersion")
-           (("if distutils\\.version\\.LooseVersion")
-            "if LooseVersion")))))
-    (build-system python-build-system)
-    (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (invoke "pytest" "-v" "--doctest-modules")))))))
+         "14l5gcj88cclkj1mf74bcy1pxq1hgsiy27fa3vxrsk32ik1nmdwm"))))
+    (build-system pyproject-build-system)
     (propagated-inputs
      (list python-matplotlib python-pandas))
     (native-inputs



reply via email to

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