guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0e67d6850efb710faaf9dc8d1b2fe1a15d0d940e
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun Sep 14 21:42:34 2025 +0900

    gnu: python-pyqtgraph: Update to 0.13.7.
    
    * gnu/packages/python-science.scm (python-pyqtgraph): Update to 0.13.7.
    [#:test-flags]: Enable parallel tests.
    
    Change-Id: Ie0193f518067754351b1524172dccb802b806cc7
---
 gnu/packages/python-science.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 8504593b1e..2a7a8d224a 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2016-2020, 2022 Marius Bakke <[email protected]>
 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2018, 2022 Leo Famulari <[email protected]>
-;;; Copyright © 2019, 2021, 2022, 2023, 2024 Maxim Cournoyer 
<[email protected]>
+;;; Copyright © 2019-2025 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2019 Giacomo Leidi <[email protected]>
 ;;; Copyright © 2020 Pierre Langlois <[email protected]>
 ;;; Copyright © 2020-2025 Vinicius Monego <[email protected]>
@@ -5687,18 +5687,20 @@ compagnies.")
 (define-public python-pyqtgraph
   (package
     (name "python-pyqtgraph")
-    (version "0.13.3")
+    (version "0.13.7")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pyqtgraph" version))
        (sha256
-        (base32 "1kiazyc8mqyx0479qdcvdclzq0g1hpp93dyq8444w1f72628s42q"))))
+        (base32 "1qyr461hcvhgy02slfkgrbip2xwa8zz6dvmi1476v6f66lclzy34"))))
     (build-system pyproject-build-system)
     (arguments
-     ;; This test fails.  It suggests to disable assert rewriting in Pytest,
-     ;; but it still doesn't pass.
-     (list #:test-flags #~'("-k" "not test_reload")
+     (list #:test-flags
+           ;; The test_reload test fails.  It suggests to disable assert
+           ;; rewriting in Pytest, but it still doesn't pass.
+           #~(list "-k" "not test_reload"
+                   "-n" (number->string (parallel-job-count)))
            #:phases
            #~(modify-phases %standard-phases
                (add-before 'check 'set-qpa

Reply via email to