summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-15 22:33:23 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:19:28 +0100
commit659477ffe0c5e6c6c5ed4ab5b5a90ea00d6ddac9 (patch)
treea7faae7928217bdf2f950053b5849161605a625a /gnu/packages/python-xyz.scm
parent6bdf5f3b662d1c371c841a86db9e28ee6345e28d (diff)
gnu: python-contourpy: Update to 1.3.3.
* gnu/packages/python-xyz.scm (python-contourpy): Update to 1.3.3. Change-Id: Id764c632d375f6e68782adf5385f227eefaebefd Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm18
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e0580a09ccf..e188de45ffa 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3209,24 +3209,22 @@ into dataclasses.")
(define-public python-contourpy
(package
(name "python-contourpy")
- (version "1.3.2")
+ (version "1.3.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "contourpy" version))
(sha256
- (base32 "0m5by0zqycm87ip6kcixya5hnsqji2alzibz3dklq0ssf515k55n"))))
+ (base32 "1078vg1lha4z8adrfnpr68sdqmjdn0ml74d4pk804191bcai4gh8"))))
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 1746 passed, 17 skipped, 8 warnings
#:test-flags
- #~(list
- ;; Image tests require matplotlib and create a circular dependency.
- "-m" "not image"
- ;; Tests that pass but avoided for load reasons.
- "-k" "not test_filled_random_big and not test_lines_random_big")))
- (propagated-inputs
- (list python-numpy))
+ ;; To prevent adding Matplotlib reducing closure size, and break cycle.
+ #~(list "-m" "not image"
+ ;; Tests that pass but avoided for load reasons.
+ "-k" "not test_filled_random_big and not test_lines_random_big")))
(native-inputs
(list cmake-minimal
meson-python
@@ -3234,6 +3232,8 @@ into dataclasses.")
pybind11
python-pytest
python-wurlitzer))
+ (propagated-inputs
+ (list python-numpy))
(home-page "https://contourpy.readthedocs.io/")
(synopsis
"Python library for calculating contours of 2D quadrilateral grids")