guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: python-trio: Downgrade to 0.21.


From: guix-commits
Subject: 01/03: gnu: python-trio: Downgrade to 0.21.
Date: Tue, 25 Apr 2023 05:22:53 -0400 (EDT)

lbraun pushed a commit to branch master
in repository guix.

commit 27e1451891db22067f569c60065a7ee1091a6993
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
AuthorDate: Mon Apr 24 12:53:34 2023 +0200

    gnu: python-trio: Downgrade to 0.21.
    
    Version 0.22 deprecates MultiError, which trips up testsuites of
    dependents. python-anyio for instance is explicitly not compatible with >=
    0.22, so stick to an older release.
    
    * gnu/packages/python-xyz.scm (python-trio): Downgrade to 0.21.
    [arguments]: Disable failing test.
---
 gnu/packages/python-xyz.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index dd1b4a64f2..95898c31da 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24837,13 +24837,13 @@ project.")
 (define-public python-trio
   (package
     (name "python-trio")
-    (version "0.22.0")
+    (version "0.21.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "trio" version))
        (sha256
-        (base32 "1kxa9v0cds0xnklvzppv4ix4xg81r73p5pm4qlvv2iqa832z2s6f"))))
+        (base32 "04qwzy4295ajxpns0hrmn3asma80sjpimzpb3i877vwynsvkjgsj"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -24876,6 +24876,8 @@ _cyclic_garbage"
                          " and not test_locals_destroyed_promptly_on_cancel"
                          " and not test_ipython_exc_handler"
                          " and not test_for_leaking_fds"
+                         ;; Signals don’t work in the build sandbox.
+                         " and not test_open_signal_receiver"
                          ;; These try to raise KeyboardInterrupt which does 
not work
                          ;; in the build environment.
                          " and not test_ki_self"



reply via email to

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