[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: python-typing-extensions: Update to 4.9.0.
From: |
guix-commits |
Subject: |
05/05: gnu: python-typing-extensions: Update to 4.9.0. |
Date: |
Sun, 11 Feb 2024 09:38:10 -0500 (EST) |
efraim pushed a commit to branch rust-team
in repository guix.
commit 38be7a97fb2a30e8b1fa674b7673de54007aaf5f
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Sun Feb 11 12:43:40 2024 +0100
gnu: python-typing-extensions: Update to 4.9.0.
* gnu/packages/python-build.scm (python-typing-extensions): Update to 4.9.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/python-build.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index bb1df3e9aa..2ea457cdba 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -216,13 +216,13 @@ PyPI (pypi.org).")
(define-public python-typing-extensions
(package
(name "python-typing-extensions")
- (version "4.5.0")
+ (version "4.9.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "typing_extensions" version))
(sha256
(base32
- "1jx7ki3sji60v7h2805b2phq9ynsvshj5xiygdh9kmirj6kz9daw"))))
+ "10spkx7xjbxwcsgkqv483c5kn53s042wkrmfr1mdf9vzqf48yir3"))))
(build-system pyproject-build-system)
;; Disable the test suite to keep the dependencies to a minimum. Also,
;; the test suite requires Python's test module, not available in Guix.