rekado pushed a commit to branch python-team
in repository guix.
commit 175eea0d091d80f36a468c2154196a79c7d83148
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 26 21:23:52 2024 +0100
gnu: python-typing-extensions: Update to 4.10.0.
* gnu/packages/python-build.scm (python-typing-extensions): Update to
4.10.0.
Change-Id: I51c82f40f8093e17e8c6a8f20f1e3eae0917f8ee
---
gnu/packages/python-build.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index e9e7ab9331..e25fe9847c 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2015, 2024 Ricardo Wurmus <[email protected]>
;;; Copyright © 2015, 2020, 2023 Efraim Flashner <[email protected]>
;;; Copyright © 2016 Leo Famulari <[email protected]>
;;; Copyright © 2020, 2023 Marius Bakke <[email protected]>
@@ -210,13 +210,13 @@ PyPI (pypi.org).")
(define-public python-typing-extensions
(package
(name "python-typing-extensions")
- (version "4.9.0")
+ (version "4.10.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "typing_extensions" version))
(sha256
(base32
- "10spkx7xjbxwcsgkqv483c5kn53s042wkrmfr1mdf9vzqf48yir3"))))
+ "1jxkj4pni8pdyrn79sq441lsp40xzw363n0qvfc6zfcgkv4dgaxh"))))
(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.