From 659477ffe0c5e6c6c5ed4ab5b5a90ea00d6ddac9 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 15 Dec 2025 22:33:23 +0000 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e0580a09ccf3f06ad9df3e93ca64d3deb7b29dde..e188de45ffac6563abb4cf1e72cf42ea74536dbe 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")