diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-02-26 21:23:52 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:30 +0000 |
commit | 6f76ab84ba2c26599c47d1138ccad2dcc4f404ab (patch) | |
tree | 6a8c7669b0c62c2c5c0961555b657ef15861c0d5 | |
parent | 52813c9e985e485cde9a3be5d1be7ce30af55db5 (diff) |
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
-rw-r--r-- | gnu/packages/python-build.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 2cdcb3b1659..e8cb8d02643 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 <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 @@ 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. |