me
/
guix
Archived
1
0
Fork 0

gnu: python-pingouin: Update to 0.5.2.

* gnu/packages/python-science.scm (python-pingouin): Update to 0.5.2.
[arguments]: Adjust outdated substitution.
master
Marius Bakke 2022-09-11 23:04:02 +02:00
parent 752711b880
commit e3ed1d09f9
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 3 additions and 3 deletions

View File

@ -835,7 +835,7 @@ of Pandas
(define-public python-pingouin
(package
(name "python-pingouin")
(version "0.5.1")
(version "0.5.2")
(source
;; The PyPI tarball does not contain the tests.
(origin
@ -846,7 +846,7 @@ of Pandas
(file-name (git-file-name name version))
(sha256
(base32
"10v3mwcmyc7rd2957cbmfcw66yw2y0fz7zcfyx46q8slbmd1d8d4"))))
"0czy7cpn6xx9fs6wbz6rq2lpkb1a89bzxj1anf2f9in1m5qyrh83"))))
(build-system python-build-system)
(arguments
`(#:phases
@ -857,7 +857,7 @@ of Pandas
(add-after 'unpack 'remove-outdated-check
(lambda _
(substitute* "setup.py"
(("'outdated',") ""))
(("\"outdated\",") ""))
(substitute* "pingouin/__init__.py"
(("^from outdated[^\n]*") "")
(("^warn_if_outdated[^\n]*") ""))))