diff mbox series

[bug#63248] gnu: python-blessed: Update to 1.17.9.

Message ID 877ctp8kn0.fsf@aol.com
State New
Headers show
Series [bug#63248] gnu: python-blessed: Update to 1.17.9. | expand

Commit Message

Adam Maleszka May 3, 2023, 4:06 p.m. UTC
Hi!

Builds of python-blessed 1.17.8 package fail with python 3.10.0 because
of bad version comparison in the test suite:

- https://ci.guix.gnu.org/build/1095114/details
- https://github.com/jquast/blessed/pull/177

This patch solves the problem by updating python-blessed to 1.17.9.

Comments

Efraim Flashner May 7, 2023, 9:43 a.m. UTC | #1
On Wed, May 03, 2023 at 06:06:27PM +0200, Adam Maleszka via Guix-patches via wrote:
> 
> Hi!
> 
> Builds of python-blessed 1.17.8 package fail with python 3.10.0 because
> of bad version comparison in the test suite:
> 
> - https://ci.guix.gnu.org/build/1095114/details
> - https://github.com/jquast/blessed/pull/177
> 
> This patch solves the problem by updating python-blessed to 1.17.9.

Thanks for the patch. I've applied it and then added another one to run
the test suite. Can you also check some of the more recent versions of
python-blessed to see if they also work? As long as we're updating it
I'd like to have a more recent version.
diff mbox series

Patch

From a2365bec7e256ac1152602a2b887c60b71d5085d Mon Sep 17 00:00:00 2001
From: Adam Maleszka <adam_maleszka@aol.com>
Date: Wed, 3 May 2023 17:13:49 +0200
Subject: [PATCH] gnu: python-blessed: Update to 1.17.9.

---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7950d4a775..9568cf7123 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27544,14 +27544,14 @@  (define-public python-svgutils
 (define-public python-blessed
   (package
     (name "python-blessed")
-    (version "1.17.8")
+    (version "1.17.9")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "blessed" version))
         (sha256
          (base32
-          "1wdj342sk22hfrg0n91x2qnqsbzbiyq9y009v3pxnvfzn9bx0wbn"))
+          "1fx9lyzyaxd44jwpp9k3c0gx37xsww1q7gq01hqbf258x1dplj8d"))
         (modules '((guix build utils)))
         (snippet
          '(begin
-- 
2.39.1