guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit d7ce596a07b0490608812d6167893aa1cceee86a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Dec 15 22:33:23 2025 +0000

    gnu: python-contourpy: Update to 1.3.3.
    
    * gnu/packages/python-xyz.scm (python-contourpy): Update to 1.3.3.
    
    Change-Id: Id764c632d375f6e68782adf5385f227eefaebefd
---
 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 dc4398dc31..62d692299e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3163,24 +3163,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
@@ -3188,6 +3186,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")

Reply via email to