guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3d7c49157b129cb752ad93db6c70dbcc301faef3
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Aug 7 14:55:05 2025 +0100
gnu: python-seaborn: Update to 0.13.2.
* gnu/packages/python-xyz.scm (python-seaborn): Update to 0.13.2.
[arguments] <test-flags>: Run tests in parallel, supported upstream.
[native-inputs]: Remove python-flake8, python-ipykernel,
python-nbconvert, python-numpydoc, python-mypy, python-pytest-cov, and
python-pyyaml.
Change-Id: Ie8df114f7b617a8c5ce0999242b47e84f8255fa6
---
gnu/packages/python-xyz.scm | 24 +++++++++++-------------
1 file changed, 11 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2d3b335747..91c098e681 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15734,31 +15734,29 @@ SVG, EPS, PNG and terminal output.")
(define-public python-seaborn
(package
(name "python-seaborn")
- (version "0.13.1")
+ (version "0.13.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "seaborn" version))
(sha256
(base32
- "0ycibcs6kvd3xi4zsxna81claqifyb9dn6z6jwc5x7lqqplnbbdz"))))
+ "1xzzxrbxsmmk39647vcx7avzdbzxw9vz8pc8yklnakcgk100mrlk"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; 2358 passed, 16 skipped, 6 xfailed, 17 warnings
+ #:test-flags
+ #~(list "--numprocesses" (number->string (parallel-job-count)) )))
+ (native-inputs
+ (list python-flit-core
+ python-pytest
+ python-pytest-xdist))
(propagated-inputs
(list python-matplotlib
python-numpy
python-pandas
python-scipy
python-statsmodels))
- (native-inputs
- (list python-flake8
- python-flit-core
- python-ipykernel
- python-nbconvert
- python-numpydoc
- python-mypy
- python-pytest
- python-pytest-cov
- python-pytest-xdist
- python-pyyaml))
(home-page "https://seaborn.pydata.org/")
(synopsis "Statistical data visualization")
(description