mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
c2861537a8
commit
6bba63234b
1 changed files with 11 additions and 2 deletions
|
@ -3906,8 +3906,17 @@ readable.")
|
||||||
(delete-file-recursively "vendor")))))
|
(delete-file-recursively "vendor")))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; require vaex.server and others, which require vaex-core.
|
(list
|
||||||
(list #:tests? #false))
|
#: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
|
(inputs
|
||||||
(list boost pcre pybind11 string-view-lite tsl-hopscotch-map))
|
(list boost pcre pybind11 string-view-lite tsl-hopscotch-map))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue