guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch wip-python-team updated: gnu: python-statmake: Adjust tests and v


From: guix-commits
Subject: branch wip-python-team updated: gnu: python-statmake: Adjust tests and version checks.
Date: Fri, 03 May 2024 05:22:30 -0400

This is an automated email from the git hooks/post-receive script.

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

The following commit(s) were added to refs/heads/wip-python-team by this push:
     new 07685ffdd3 gnu: python-statmake: Adjust tests and version checks.
07685ffdd3 is described below

commit 07685ffdd335fdabcd7079baabd34f218ec4d9fd
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri May 3 11:21:37 2024 +0200

    gnu: python-statmake: Adjust tests and version checks.
    
    * gnu/packages/fontutils.scm (python-statmake)[arguments]: Disable broken
    test; relax check for cattrs.
    
    Change-Id: Ibd479743160d3591088d17635e26484e7de5250f
---
 gnu/packages/fontutils.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 212c258aca..dcce09bd0e 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -1751,6 +1751,9 @@ generate bitmaps.")
     (build-system pyproject-build-system)
     (arguments
      (list
+      #:test-flags
+      ;; The code no longer raises <class 'ValueError'>
+      '(list "-k" "not test_load_stylespace_broken_range")
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'adjust-for-older-attrs
@@ -1760,7 +1763,9 @@ generate bitmaps.")
             (lambda _
               (substitute* "pyproject.toml"
                 (("attrs = \">=21.3\"")
-                 "attrs = \">=21.2\""))
+                 "attrs = \">=21.2\"")
+                (("cattrs = \">=22.2\"")
+                 "cattrs = \">=22.1\""))
               (substitute* (find-files "." "\\.py$")
                 (("from attrs\\b")
                  "from attr")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]