me
/
guix
Archived
1
0
Fork 0

gnu: python-modin: Permit newer versions of pandas.

* gnu/packages/python-science.scm (python-modin)[arguments]: Add phase.
Marius Bakke 2022-01-12 14:44:39 +01:00
parent 9b7fd055a2
commit 8622e0a721
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 7 additions and 1 deletions

View File

@ -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?