diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-28 09:04:01 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-10-02 21:47:27 -0400 |
commit | ec2ecf790fc1cbd05574d12965f95dc1f7b39e28 (patch) | |
tree | 5ded07980d5883f28b25b3bf5d0b1e84799b7dab /gnu/packages/python-xyz.scm | |
parent | 755da56f21a31e1116857c34bfbd6f71a96e928f (diff) | |
download | guix-ec2ecf790fc1cbd05574d12965f95dc1f7b39e28.tar.gz guix-ec2ecf790fc1cbd05574d12965f95dc1f7b39e28.zip |
gnu: python-openpyxl: Update to 3.0.5.
* gnu/packages/python-xyz.scm (python-openpyxl): Update to 3.0.5.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 22a356d11b..b67224d1b1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1623,18 +1623,18 @@ of @code{xmlfile}.") (define-public python-openpyxl (package (name "python-openpyxl") - (version "2.6.2") + (version "3.0.5") (source (origin ;; We use the upstream repository, as the tests are not included in the ;; PyPI releases. (method hg-fetch) (uri (hg-reference - (url "https://bitbucket.org/openpyxl/openpyxl") + (url "https://foss.heptapod.net/openpyxl/openpyxl") (changeset version))) (file-name (string-append name "-" version "-checkout")) (sha256 - (base32 "1qhij6kcvdxqjy4g6193nsv4q7fy8n4fwyd3c2z047idlm6s3j4w")))) + (base32 "0s6fgwwkcfz1bnrp5gjd4g2lcbl4a76147ylkrmkbabi2nf4xlli")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases |