unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#55453] [PATCH 0/1] gnu: python-rich: Update to 12.4.1.
@ 2022-05-16 15:04 Taiju HIGASHI
  2022-05-16 15:09 ` [bug#55453] [PATCH 1/1] " Taiju HIGASHI
  2022-05-24 14:50 ` bug#55453: [PATCH 0/1] " Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: Taiju HIGASHI @ 2022-05-16 15:04 UTC (permalink / raw)
  To: 55453; +Cc: Taiju HIGASHI

Hi,

Build of python-rich fails because the version of python-rich is out of date.
As a result, the build of pelican, which depends on python-rich, also fails.

I think this is because the version of pygments has been upgraded and the
problem fixed in the pull request below has occurred.

With this patch, both python-rich and pelican can be built.

Thank you

Taiju HIGASHI (1):
  gnu: python-rich: Update to 12.4.1.

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

--
2.35.1




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#55453] [PATCH 1/1] gnu: python-rich: Update to 12.4.1.
  2022-05-16 15:04 [bug#55453] [PATCH 0/1] gnu: python-rich: Update to 12.4.1 Taiju HIGASHI
@ 2022-05-16 15:09 ` Taiju HIGASHI
  2022-05-16 15:14   ` Taiju HIGASHI
  2022-05-24 14:50 ` bug#55453: [PATCH 0/1] " Ludovic Courtès
  1 sibling, 1 reply; 4+ messages in thread
From: Taiju HIGASHI @ 2022-05-16 15:09 UTC (permalink / raw)
  To: 55453; +Cc: Taiju HIGASHI

* gnu/packages/python-xyz.scm (python-rich): Update to 12.4.1.
---
 gnu/packages/python-xyz.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 199fcf5fb8..f3efd49af6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -121,6 +121,7 @@
 ;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
 ;;; Copyright © 2022 Wamm K. D. <jaft.r@outlook.com>
 ;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
+;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -16500,13 +16501,13 @@ (define-public python-rarfile
 (define-public python-rich
   (package
     (name "python-rich")
-    (version "10.2.2")
+    (version "12.4.1")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "rich" version))
               (sha256
                (base32
-                "1z5m5brcdf3vndpavcqj5nl35xby4x5rfj48klhwqycfqf3g9cqp"))))
+                "149vjb4cpf9mz14iig0b6d8065dm8aslp6pc45g9ipmp1wf00ffj"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -16519,7 +16520,10 @@ (define-public python-rich
                                  "tests")
                (invoke "python" "-m" "pytest" "-vv")))))))
     (propagated-inputs
-     (list python-attrs python-colorama python-commonmark python-pygments
+     (list python-commonmark
+           python-dataclasses
+           python-ipywidgets
+           python-pygments
            python-typing-extensions))
     (native-inputs
      `(("python-pytest" ,python-pytest)
@@ -16535,7 +16539,7 @@ (define-public python-rich
            (file-name (git-file-name name version))
            (sha256
             (base32
-             "19f4svb363sn5708qkpa6lakmiwzyb25h8kmh7bqrsbbrvi9hr70"))))))
+             "17c3gljn8zv32xnpsgd3fqgqn4r7cdfqri41hridcpbhssdgkyp9"))))))
     (home-page "https://github.com/willmcgugan/rich")
     (synopsis "Render rich text and more to the terminal")
     (description
-- 
2.35.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#55453] [PATCH 1/1] gnu: python-rich: Update to 12.4.1.
  2022-05-16 15:09 ` [bug#55453] [PATCH 1/1] " Taiju HIGASHI
@ 2022-05-16 15:14   ` Taiju HIGASHI
  0 siblings, 0 replies; 4+ messages in thread
From: Taiju HIGASHI @ 2022-05-16 15:14 UTC (permalink / raw)
  To: 55453; +Cc: Taiju HIGASHI

Sorry, I forgot to include the Pull Request URL in the email.
It is the following URL.

https://github.com/Textualize/rich/pull/1796




^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#55453: [PATCH 0/1] gnu: python-rich: Update to 12.4.1.
  2022-05-16 15:04 [bug#55453] [PATCH 0/1] gnu: python-rich: Update to 12.4.1 Taiju HIGASHI
  2022-05-16 15:09 ` [bug#55453] [PATCH 1/1] " Taiju HIGASHI
@ 2022-05-24 14:50 ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-05-24 14:50 UTC (permalink / raw)
  To: Taiju HIGASHI; +Cc: 55453-done

Hi,

Taiju HIGASHI <higashi@taiju.info> skribis:

> Build of python-rich fails because the version of python-rich is out of date.
> As a result, the build of pelican, which depends on python-rich, also fails.
>
> I think this is because the version of pygments has been upgraded and the
> problem fixed in the pull request below has occurred.
>
> With this patch, both python-rich and pelican can be built.

Python-rich was updated independently in
93ef1eecd96a0dd0ebfe44adac8b027151697f2e.

Closing!

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-05-24 14:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-16 15:04 [bug#55453] [PATCH 0/1] gnu: python-rich: Update to 12.4.1 Taiju HIGASHI
2022-05-16 15:09 ` [bug#55453] [PATCH 1/1] " Taiju HIGASHI
2022-05-16 15:14   ` Taiju HIGASHI
2022-05-24 14:50 ` bug#55453: [PATCH 0/1] " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).