diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-07 15:35:42 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:22:13 +0100 |
| commit | 716fe2f4dab4d95f87eb7ca2429151ede48f664c (patch) | |
| tree | 884cbbe13d261e2d2754de84fca2596a5a583cd1 /gnu/packages/machine-learning.scm | |
| parent | 26436fba552cc3c4154c8105d0df21a3b9f4b70a (diff) | |
gnu: python-pot: Update to 0.9.6.post1.
* gnu/packages/machine-learning.scm (python-pot): Update to 0.9.6.post1.
[arguments]: Drop all.
[propagated-inputs]: Add python-cvxopt and python-matplotlib.
[native-inputs]: Remove python-pytest-cov.
Change-Id: I763bf521a30f1bd4067089133421239af160173c
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/machine-learning.scm')
| -rw-r--r-- | gnu/packages/machine-learning.scm | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 0e3a28b2939..c807438eba1 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1450,42 +1450,41 @@ Cython for speed.") (define-public python-pot (package (name "python-pot") - (version "0.9.6") + (version "0.9.6.post1") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PythonOT/POT") - (commit version))) + (url "https://github.com/PythonOT/POT") + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1zzh6jsnagsmcmf91hhb0f1asnby11h2zc92h7myld4wik986bx7")))) + (base32 "1i4nv72hw5ad63w4wghwfzxp1rvh2qs4agxjk72d10xgg8lizgkm")))) (build-system pyproject-build-system) - (arguments - (list - #:test-flags - #~(list "-k" - ;; Semirelaxed GW init partitions by size via np.where(shapes <= N); - ;; dtype mix triggers str vs int TypeError under our NumPy. - "not test_entropic_semirelaxed_gromov" - "test"))) + ;; tests: 1885 passed, 60 skipped, 6 xfailed, 9288 warnings + (native-inputs + (list python-cython + python-pytest + python-setuptools)) (propagated-inputs - (list python-autograd - python-numpy + (list python-numpy + python-scipy + ;; [optional] + python-autograd + python-cvxopt + ;; python-jax + ;; python-jaxlib + python-matplotlib + python-pymanopt python-pytorch python-pytorch-geometric - python-pymanopt - python-scikit-learn - python-scipy)) - (native-inputs (list python-cython - python-pytest - python-pytest-cov - python-setuptools)) + python-scikit-learn)) (home-page "https://github.com/PythonOT/POT") (synopsis "Python Optimal Transport Library") - (description "This Python library provides several solvers for -optimization problems related to Optimal Transport for signal, image -processing and machine learning.") + (description + "This Python library provides several solvers for optimization problems +related to Optimal Transport for signal, image processing and machine +learning.") (license license:expat))) (define-public python-pymanopt |
