diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-12 14:44:39 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-12 23:50:15 +0100 |
commit | 8622e0a721336f740531055dee575b60998affa7 (patch) | |
tree | 98f1a2d39c36c4bf394a7c7bffe2a7d6ba0904c2 /gnu | |
parent | 9b7fd055a20b399be996c857a2fa67ad36581da5 (diff) | |
download | guix-8622e0a721336f740531055dee575b60998affa7.tar guix-8622e0a721336f740531055dee575b60998affa7.tar.gz |
gnu: python-modin: Permit newer versions of pandas.
* gnu/packages/python-science.scm (python-modin)[arguments]: Add phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-science.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 1311fbad0c..4e7690df7a 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> -;;; Copyright © 2016, 2017, 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com> +;;; Copyright © 2016-2020, 2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org> @@ -993,6 +993,12 @@ computing in Python. It extends both the @code{concurrent.futures} and (add-after 'unpack 'make-files-writable (lambda _ (for-each make-file-writable (find-files ".")))) + (add-after 'unpack 'loosen-requirements + (lambda _ + (substitute* "setup.py" + ;; Don't depend on a specific version of Pandas. + (("pandas==") + "pandas>=")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? |