diff options
| author | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-02-20 11:23:11 +0100 |
|---|---|---|
| committer | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2026-02-20 11:33:04 +0100 |
| commit | d2a1561392cd2ff781f6e395fc07ad0f6c2077d9 (patch) | |
| tree | 77a89a281f24a6bfff0fc02fec5abadc254c383f | |
| parent | c63e20b7e1650c2d4ff739c3be12282b69503409 (diff) | |
statistics: python-iterative-stats: Fix build.
* guix-science/packages/statistics.scm (python-iterative-stats)
[arguments]<#:phases> Add fix-requirements phase after unpack, which removes
upper version limits in dependencies.
| -rw-r--r-- | guix-science/packages/statistics.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/guix-science/packages/statistics.scm b/guix-science/packages/statistics.scm index 8b43056..b75add8 100644 --- a/guix-science/packages/statistics.scm +++ b/guix-science/packages/statistics.scm | |||
| @@ -328,6 +328,11 @@ respectively).") | |||
| 328 | (list | 328 | (list |
| 329 | #:phases | 329 | #:phases |
| 330 | #~(modify-phases %standard-phases | 330 | #~(modify-phases %standard-phases |
| 331 | (add-after 'unpack 'fix-requirements | ||
| 332 | (lambda _ | ||
| 333 | (substitute* "pyproject.toml" | ||
| 334 | ((",<.*\"") | ||
| 335 | "\"")))) | ||
| 331 | (add-after 'unpack 'fix-numpy-compatibility | 336 | (add-after 'unpack 'fix-numpy-compatibility |
| 332 | (lambda _ | 337 | (lambda _ |
| 333 | (substitute* "iterative_stats/iterative_moments.py" | 338 | (substitute* "iterative_stats/iterative_moments.py" |
