diff options
author | Vinicius Monego <monego@posteo.net> | 2024-04-06 09:35:36 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2024-07-06 22:59:40 -0300 |
commit | 3d0114e8fbb711c2d95b4865bcced4d9fa06e874 (patch) | |
tree | f530ef93e33faa947500d836d6990a5f6c888927 /gnu | |
parent | 5b84b46a75fdd55615c7c71d1a1977eb4aad57c6 (diff) | |
download | guix-3d0114e8fbb711c2d95b4865bcced4d9fa06e874.tar.gz guix-3d0114e8fbb711c2d95b4865bcced4d9fa06e874.zip |
gnu: python-arviz: Update to 0.18.0.
* gnu/packages/statistics.scm (python-arviz): Update to 0.18.0.
[propagated-inputs]: Add python-dm-tree.
Change-Id: Ia4714db0ea1ae5097afe875537c162f2cc3ad3fc
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 9dee863c55..3e6e007eb9 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2180,7 +2180,7 @@ machine learning, computer vision, and high-dimensional statistics.") (define-public python-arviz (package (name "python-arviz") - (version "0.17.1") + (version "0.18.0") (source (origin (method git-fetch) ; PyPI misses some test files (uri (git-reference @@ -2189,7 +2189,7 @@ machine learning, computer vision, and high-dimensional statistics.") (file-name (git-file-name name version)) (sha256 (base32 - "1rpm2a9swzhnqn84dfsbc8kvz6qnn8w2icr3p08gwax9h9pg4ksp")))) + "1bdj2mm8zdd83ln9ka9p6bln3n5kkpfmrhgqyy018h51l156m529")))) (build-system pyproject-build-system) (arguments ;; FIXME: matplotlib tests fail because of the "--save" test flag. @@ -2208,7 +2208,8 @@ machine learning, computer vision, and high-dimensional statistics.") ;; 3 tests require write permission. (setenv "HOME" "/tmp")))))) (native-inputs (list python-cloudpickle python-pytest)) - (propagated-inputs (list python-h5netcdf + (propagated-inputs (list python-dm-tree + python-h5netcdf python-matplotlib python-numpy python-packaging |