summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-11 22:03:48 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:36 +0100
commit62a443d7cc2f96dc98c1c611524f6d4c3b0c682d (patch)
treed4e3cd4496bab93a93060cace25ea502b22d3c1f
parent34a1f532249c955a7319d7cb50c876d46db2c5bb (diff)
gnu: python-typing-extensions: Update to 4.15.0.
* gnu/packages/python-build.scm (python-typing-extensions): Update to 4.15.0. Change-Id: I1a218c75a41539902a34c53d465535d5856674e0
-rw-r--r--gnu/packages/python-build.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 42b68c34aa..200aa4efaf 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -222,13 +222,13 @@ PyPI (pypi.org).")
(define-public python-typing-extensions
(package
(name "python-typing-extensions")
- (version "4.12.2")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "typing_extensions" version))
- (sha256
- (base32
- "1f7z47hmz48kgixzb3ffw6zml8j1iflf6ml8xr6xsng5qxasszhs"))))
+ (version "4.15.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "typing_extensions" version))
+ (sha256
+ (base32 "0rhlhs28jndgp9fghdhidn6g7xiwx8vvihxbxhlgl4ncfg8lishc"))))
(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.