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
This commit is contained in:
Ricardo Wurmus 2024-02-26 21:23:52 +01:00 committed by Sharlatan Hellseher
parent 52813c9e98
commit 6f76ab84ba
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2024 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2020, 2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
;;; Copyright © 2020, 2023 Marius Bakke <marius@gnu.org>
@ -223,13 +223,13 @@ (define-public python-trove-classifiers
(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.