diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-07 14:55:05 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-07 18:33:38 +0100 |
| commit | 3d7c49157b129cb752ad93db6c70dbcc301faef3 (patch) | |
| tree | 4d28a002da0d351f209057055af91cfae55461d2 /gnu/packages/python-xyz.scm | |
| parent | debc80b4d47cde4dfc45e1e69bab62bc3f36bf1a (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files 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 |
