guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 5fb8986c1bb4e6e2364ef49d183301e4e264a60b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jun 21 23:11:41 2026 +0100
gnu: python-vaex-core: Relax requirements for Pandas.
* gnu/packages/python-science.scm (python-vaex-core):
[phases]{relax-requirements}: Drop higher bar for Pandas.
[native-inputs]: Remove pybind11-2; add pybind11.
---
gnu/packages/python-science.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index cbb48e2e30..78fdf5add4 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -5156,7 +5156,10 @@ readable.")
;; "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") ""))))
+ ((",<2024.9") "")
+ ;; There is no a fresh version supporting Pandas 3 yet, built
+ ;; has passed but sanity-check fails.
+ (("pandas>=1.0,<3") "pandas>=1.0"))))
(add-before 'build 'patch-missing-include
(lambda _
;; See: <https://github.com/vaexio/vaex/issues/2382>.
@@ -5165,7 +5168,7 @@ readable.")
(("#include <nonstd/string_view.hpp>")
"#include <cstdint>\n#include <nonstd/string_view.hpp>")))))))
(native-inputs
- (list pybind11-2
+ (list pybind11
python-cython
python-setuptools))
(inputs