diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-30 20:35:30 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-06 18:44:04 +0100 |
commit | 6bba63234bdd2d8242d1d3c068bea5ee08fa8e8b (patch) | |
tree | fec484f5b596b287135b823b932e9f0e1be18afa /gnu/packages/python-science.scm | |
parent | c2861537a88c6f8fcde6cc06f4da83062db01fea (diff) |
gnu: python-vaex-core: Relax upper limit for dask version.
* gnu/packages/python-science.scm (python-vaex-core) [arguments]
<phases>: Add 'relax-requirement.
Change-Id: Iae12fbafc6d235c99df4781521cb4fac965f7f3f
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 06a811cb6d..0d7587b9c9 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -3906,8 +3906,17 @@ readable.") (delete-file-recursively "vendor"))))) (build-system pyproject-build-system) (arguments - ;; require vaex.server and others, which require vaex-core. - (list #:tests? #false)) + (list + #:tests? #f ; require vaex.server and others, which require vaex-core. + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "setup.py" + ;; "dask!=2022.4.0,<2024.9"; there is a note "fingerprinting + ;; in no longer deterministic as of 2024.9.0" which may be + ;; resolved in 2024.12.1. + ((",<2024.9") ""))))))) (inputs (list boost pcre pybind11 string-view-lite tsl-hopscotch-map)) (propagated-inputs |