aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-04-04 21:16:53 +0200
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:28 +0200
commitc42f6d6a18f08a8024aad5457c42807ce9ba2983 (patch)
treeb64074b175bcc9429eb744a72e50465df43efe34
parent984a35fbdec5e83d96455e4e0d480f18aa664791 (diff)
downloadguix-c42f6d6a18f08a8024aad5457c42807ce9ba2983.tar.gz
guix-c42f6d6a18f08a8024aad5457c42807ce9ba2983.zip
gnu: python-pgmpy: Update to 1.0.0.
* gnu/packages/statistics.scm (python-pgmpy): Update to 1.0.0. [arguments]{test-flags}: Ignore failing tests. [native-inputs]: Add python-pyro-ppl, python-setuptools, python-wheel, python-xgboost. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/statistics.scm16
1 files changed, 13 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 7473004ab4..fc31eb97c3 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -3327,7 +3327,7 @@ statistical summary in arrays and enumerables.")
(define-public python-pgmpy
(package
(name "python-pgmpy")
- (version "0.1.24")
+ (version "1.0.0")
(source
(origin
(method git-fetch) ;pypi package does not include test data
@@ -3337,8 +3337,14 @@ statistical summary in arrays and enumerables.")
(file-name (git-file-name name version))
(sha256
(base32
- "0fvzh6v0yhgdryczamvzhfy2ymywkh0ssx4rl47xnfvi43hnij90"))))
+ "1hg6wrg3jcac71zn4gknni1wrn38wa86ka3sgp2bndz59mx6sr2s"))))
(build-system pyproject-build-system)
+ (arguments
+ (list #:test-flags
+ #~(list "-k" (string-append
+ "not test_pillai"
+ " and not test_estimate_with_cache_no_llm_calls"
+ " and not test_estimate_with_orientations"))))
(propagated-inputs (list python-daft
python-joblib
python-networkx
@@ -3352,7 +3358,11 @@ statistical summary in arrays and enumerables.")
python-statsmodels
python-tqdm))
(native-inputs (list python-mock
- python-pytest))
+ python-pyro-ppl
+ python-pytest
+ python-setuptools
+ python-wheel
+ python-xgboost))
(home-page "https://github.com/pgmpy/pgmpy")
(synopsis "Probabilistic Graphical Models library")
(description "This package provides a library for Probabilistic