* [bug#63657] [PATCH] gnu: python-py3status: Update to 3.50, compatible with Python 3.10.
@ 2023-05-23 7:49 Ivan Vilata i Balaguer
2023-05-26 12:29 ` Ivan Vilata i Balaguer
2023-06-12 19:18 ` bug#63657: " Christopher Baines
0 siblings, 2 replies; 3+ messages in thread
From: Ivan Vilata i Balaguer @ 2023-05-23 7:49 UTC (permalink / raw)
To: 63657
[-- Attachment #1: Type: text/plain, Size: 1428 bytes --]
This avoids "ImportError: cannot import name 'Iterable' from 'collections'"
from py3status version < 3.25.
* gnu/packages/python-xyz.scm (python-py3status): Update to 3.50.
---
gnu/packages/python-xyz.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f7e3f6f538..a2aed948d4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -137,6 +137,7 @@
;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
;;; Copyright © 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
;;; Copyright © 2023 Dominik Delgado Steuter <d@delgado.nrw>
+;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -17785,13 +17786,13 @@ (define-public python-rope
(define-public python-py3status
(package
(name "python-py3status")
- (version "3.21")
+ (version "3.50")
(source
(origin
(method url-fetch)
(uri (pypi-uri "py3status" version))
(sha256
- (base32 "16z8zq83hxy48g6hh4xczbdz50qvxv9k1aahr4fqq7jis60cc262"))))
+ (base32 "0j2dx9lzpic15r8p0r0s3jmcskxpacahxl640b4864ldn5rlnh9d"))))
(build-system python-build-system)
(inputs
(list file))
base-commit: dff1689bb37e5303868584d3f1d7a33cbcb7f51e
--
2.40.1
--
Ivan Vilata i Balaguer -- https://elvil.net/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#63657] [PATCH] gnu: python-py3status: Update to 3.50, compatible with Python 3.10.
2023-05-23 7:49 [bug#63657] [PATCH] gnu: python-py3status: Update to 3.50, compatible with Python 3.10 Ivan Vilata i Balaguer
@ 2023-05-26 12:29 ` Ivan Vilata i Balaguer
2023-06-12 19:18 ` bug#63657: " Christopher Baines
1 sibling, 0 replies; 3+ messages in thread
From: Ivan Vilata i Balaguer @ 2023-05-26 12:29 UTC (permalink / raw)
To: 63657
[-- Attachment #1: Type: text/plain, Size: 2089 bytes --]
Ivan Vilata i Balaguer (2023-05-23 09:49:29 +0200) wrote:
> This avoids "ImportError: cannot import name 'Iterable' from 'collections'"
> from py3status version < 3.25.
>
> * gnu/packages/python-xyz.scm (python-py3status): Update to 3.50.
To add some context to this patch, the issue is with the main package program
crashing with current Python 3.10 on execution (building doesn't fail):
```
$ guix shell -CW which procps python-py3status
user@computer /tmp [env]$ guix describe
guix 14c0380
repository URL: https://git.savannah.gnu.org/git/guix.git
branch: master
commit: 14c03807ba4bc81d42cf869f5b827f7da54ff843
user@computer /tmp [env]$ py3status
Traceback (most recent call last):
File "/gnu/store/73w4jp96ib943bzxc3g4wg1ja8xdg7ha-python-py3status-3.21/bin/.py3status-real", line 13, in <module>
sys.exit(main())
File "/gnu/store/73w4jp96ib943bzxc3g4wg1ja8xdg7ha-python-py3status-3.21/lib/python3.10/site-packages/py3status/__init__.py", line 34, in main
from py3status.core import Py3statusWrapper
File "/gnu/store/73w4jp96ib943bzxc3g4wg1ja8xdg7ha-python-py3status-3.21/lib/python3.10/site-packages/py3status/core.py", line 22, in <module>
from py3status.i3status import I3status
File "/gnu/store/73w4jp96ib943bzxc3g4wg1ja8xdg7ha-python-py3status-3.21/lib/python3.10/site-packages/py3status/i3status.py", line 14, in <module>
from py3status.py3 import Py3
File "/gnu/store/73w4jp96ib943bzxc3g4wg1ja8xdg7ha-python-py3status-3.21/lib/python3.10/site-packages/py3status/py3.py", line 19, in <module>
from py3status.storage import Storage
File "/gnu/store/73w4jp96ib943bzxc3g4wg1ja8xdg7ha-python-py3status-3.21/lib/python3.10/site-packages/py3status/storage.py", line 5, in <module>
from collections import Iterable, Mapping
ImportError: cannot import name 'Iterable' from 'collections' (/gnu/store/dy3xh053ahkhrp2jamggq8cpsyvp8mg0-python-3.10.7/lib/python3.10/collections/__init__.py)
```
Newer versions use `from collections.abc`.
Cheers,
--
Ivan Vilata i Balaguer -- https://elvil.net/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#63657: [PATCH] gnu: python-py3status: Update to 3.50, compatible with Python 3.10.
2023-05-23 7:49 [bug#63657] [PATCH] gnu: python-py3status: Update to 3.50, compatible with Python 3.10 Ivan Vilata i Balaguer
2023-05-26 12:29 ` Ivan Vilata i Balaguer
@ 2023-06-12 19:18 ` Christopher Baines
1 sibling, 0 replies; 3+ messages in thread
From: Christopher Baines @ 2023-06-12 19:18 UTC (permalink / raw)
To: Ivan Vilata i Balaguer; +Cc: 63657-done
[-- Attachment #1: Type: text/plain, Size: 603 bytes --]
Ivan Vilata i Balaguer <ivan@selidor.net> writes:
> [[PGP Signed Part:Good signature from 3DECC105F5DD2382 Ivan Vilata i Balaguer <ivan@selidor.net> (trust undefined) created at 2023-05-23T08:49:29+0100 using RSA]]
> This avoids "ImportError: cannot import name 'Iterable' from 'collections'"
> from py3status version < 3.25.
>
> * gnu/packages/python-xyz.scm (python-py3status): Update to 3.50.
> ---
> gnu/packages/python-xyz.scm | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
This looks good to me, I've pushed to master as
3cc08bbdd960879e97ae5a9683ede3e630caf28e.
Thanks,
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-06-13 16:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-23 7:49 [bug#63657] [PATCH] gnu: python-py3status: Update to 3.50, compatible with Python 3.10 Ivan Vilata i Balaguer
2023-05-26 12:29 ` Ivan Vilata i Balaguer
2023-06-12 19:18 ` bug#63657: " Christopher Baines
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).