diff options
author | Andreas Enge <andreas@enge.fr> | 2023-02-25 16:02:18 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-02-25 16:02:40 +0100 |
commit | 3e5fd70f52f9c117cb8803551c447861b68a07d5 (patch) | |
tree | a779b68442cae52f5819d7ced34df3913d17e29f | |
parent | d1260b9c401d6dabec7f8f33f984e33d99aaf981 (diff) | |
download | guix-3e5fd70f52f9c117cb8803551c447861b68a07d5.tar.gz |
gnu: python-importlib-metadata: Update to 5.2.0.
There is a newer version 6.0.0, but python-json-spec requires a version >=5 and <6. * gnu/packages/python-xyz.scm (python-importlib-metadata): Update to 5.2.0.
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 782fa931f8..b43453a726 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8691,14 +8691,14 @@ older Python versions.") (define-public python-importlib-metadata (package (name "python-importlib-metadata") - (version "4.11.3") + (version "5.2.0") (source (origin (method url-fetch) (uri (pypi-uri "importlib_metadata" version)) (sha256 (base32 - "0f951zynlh39yicqnhrs3p1qa5p3g6ajjfcggf12y51ppxz5jk7a")))) + "1kf7qclcz820xl5wwjpzcwpfy6shj7ymwh4xzxvpl2xs5gb4hka0")))) (build-system python-build-system) (arguments (list |