summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-17 18:52:08 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-18 11:36:37 +0200
commit76adb7b87ab2255a4e4288e195d62702c86ba976 (patch)
treeed29a1cdba7f4ada584edfc0644c41e275100347
parent523ef01f3363988780ae38453a02ba9e3da5eb0a (diff)
machine-learning: python-scikit-lego: Update to 0.9.9.
* guix-science/packages/machine-learning.scm (python-scikit-lego) [source]: Update to 0.9.9. [arguments]<#:tests?>: Drop, enable tests. <#:test-flags>: Ignore markers for optional dependencies. [native-inputs]: Add python-polars.
-rw-r--r--guix-science/packages/machine-learning.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/guix-science/packages/machine-learning.scm b/guix-science/packages/machine-learning.scm
index 933a828..2f27173 100644
--- a/guix-science/packages/machine-learning.scm
+++ b/guix-science/packages/machine-learning.scm
@@ -1601,7 +1601,7 @@ can be connected and extended within this package.")
1601(define-public python-scikit-lego 1601(define-public python-scikit-lego
1602 (package 1602 (package
1603 (name "python-scikit-lego") 1603 (name "python-scikit-lego")
1604 (version "0.9.5") 1604 (version "0.9.9")
1605 (source 1605 (source
1606 (origin 1606 (origin
1607 (method git-fetch) 1607 (method git-fetch)
@@ -1610,15 +1610,16 @@ can be connected and extended within this package.")
1610 (commit (string-append "v" version)))) 1610 (commit (string-append "v" version))))
1611 (file-name (git-file-name name version)) 1611 (file-name (git-file-name name version))
1612 (sha256 1612 (sha256
1613 (base32 "0ayw2z9p26j10qd77afsk9fhf2f0nv70rmgbps6ix0w8dbdndzm8")))) 1613 (base32 "03x1fhcihck9bq5s6k2h408ym8g78paw6h69w94m3g2ma901lmv4"))))
1614 (build-system pyproject-build-system) 1614 (build-system pyproject-build-system)
1615 (arguments 1615 (arguments
1616 (list 1616 (list
1617 #:tests? #f)) ;Requires python-polars. 1617 #:test-flags
1618 #~(list "-m" "not (cvxpy or formulaic or umap)")))
1618 (propagated-inputs (list python-importlib-resources python-narwhals 1619 (propagated-inputs (list python-importlib-resources python-narwhals
1619 python-pandas python-scikit-learn 1620 python-pandas python-scikit-learn
1620 python-sklearn-compat)) 1621 python-sklearn-compat))
1621 (native-inputs (list python-narwhals python-pytest python-pytest-mock 1622 (native-inputs (list python-polars python-pytest python-pytest-mock
1622 python-setuptools)) 1623 python-setuptools))
1623 (home-page "https://koaning.github.io/scikit-lego/") 1624 (home-page "https://koaning.github.io/scikit-lego/")
1624 (synopsis "Extra blocks for scikit-learn pipelines") 1625 (synopsis "Extra blocks for scikit-learn pipelines")