guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 053ebb04134ad6f7fde3951c885ae6eb252f0500
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 14 14:54:29 2025 +0000

    gnu: python-xarray-einstats: Update to 0.9.1.
    
    * gnu/packages/python-science.scm (python-xarray-einstats): Update to 0.9.1.
    [propagated-inputs]: Add python-einops and python-numba.
    [native-inputs]: Remove python-einops and python-numba.
    
    Change-Id: Ic3e05114dc3d6343523aec222f527ef9653ed2d6
---
 gnu/packages/python-science.scm | 34 +++++++++++++++++++++-------------
 1 file changed, 21 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index e016684f81..2afcaf459b 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -4820,20 +4820,28 @@ being merged upstream into @code{xarray}.")
 (define-public python-xarray-einstats
   (package
     (name "python-xarray-einstats")
-    (version "0.7.0")
-    (source (origin
-              (method git-fetch) ; no tests in PyPI
-              (uri (git-reference
-                    (url "https://github.com/arviz-devs/xarray-einstats";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "14c424swpdginaz4pm3nmkizxy34x19q6xq3d4spx9s9031f6n3a"))))
+    (version "0.9.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/arviz-devs/xarray-einstats";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "11crz1l6swabwzmwbrxypfw8gbbp81higzgi5nsxzfigcrrqq30a"))))
     (build-system pyproject-build-system)
-    (native-inputs (list python-einops python-flit-core python-numba
-                         python-pytest))
-    (propagated-inputs (list python-numpy python-scipy python-xarray))
+    ;; tests: 317 passed, 48 skipped 
+    (native-inputs
+     (list python-flit-core
+           python-pytest))
+    (propagated-inputs
+     (list python-numpy
+           python-scipy
+           python-xarray
+           ;; [optinoal]
+           python-einops
+           python-numba))
     (home-page "https://einstats.python.arviz.org/en/latest/";)
     (synopsis "Stats, linear algebra and einops for xarray")
     (description

Reply via email to