guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit fe56bd3127a9b2e3a1be603743906ccf8c1bf10d
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 dc1353ba09..c8ec8506e2 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -5198,7 +5198,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>.
@@ -5207,7 +5210,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

Reply via email to