[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: python-pillow-simd: Fix version.
From: |
guix-commits |
Subject: |
branch master updated: gnu: python-pillow-simd: Fix version. |
Date: |
Wed, 23 Mar 2022 09:29:01 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 9a31942cab gnu: python-pillow-simd: Fix version.
9a31942cab is described below
commit 9a31942cabb5c73174aee96ecd873fcf89955a9d
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Mar 23 14:26:40 2022 +0100
gnu: python-pillow-simd: Fix version.
* gnu/packages/python-xyz.scm (python-pillow-simd)[version]: Move "v" prefix
out of version string.
---
gnu/packages/python-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 997b809b65..2b6051265f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7250,14 +7250,14 @@ a general image processing tool.")
(package
(inherit python-pillow)
(name "python-pillow-simd")
- (version "v9.0.0.post1")
+ (version "9.0.0.post1")
;; The PyPI tarball does not include test files.
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/uploadcare/pillow-simd")
- (commit version)))
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1dnvsln451aw3qy2cxg2ndd5mcanf5nrhxw9l7mcam730635hdm9"))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: python-pillow-simd: Fix version.,
guix-commits <=