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.
This commit is contained in:
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

View file

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